Skip to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (โ‹ฎ) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

warjort

Members
  • Joined

  • Last visited

Everything posted by warjort

  1. They don't use baked models. See for example BedRenderer. The only thing they define in their models is the block break particle ๐Ÿ™‚ https://github.com/misode/mcmeta/blob/assets/assets/minecraft/models/block/bed.json I've never tried to do it, but I guess If you want to draw something with a BlockEntityRenderer then you need to use the BlockEntityRendererDispatcher BlockEntityWithoutLevelRenderer kind of does this, but it does it to draw them as items.
  2. One of your config files is invalid/corrupted. If you don't have a backup of this file, you can delete it and it will be recreated with default files.
  3. https://github.com/sp614x/optifine/issues/7127
  4. Like it says, your account doesn't have the operating system permissions to open that file. You probably installed it as adminstrator and are now trying to run the program with normal user permissions? You need to give your account the correct permission to that file (and probably others including the folders that contains them).
  5. This is a crash in your graphics driver. Check you have the up-to-date version. If you do have the latest version, sometimes downgrading to a previous version can fix problems with newly introduced bugs by the manufacturer. Otherwise, you will need to talk to nvidia.
  6. Your original (wrong) log shows you using a legitimate account. The second log shows you using a cracked client/launcher which isn't supported in this forum.
  7. https://github.com/Asek3/Oculus/issues/187
  8. If you look at StructureTemplateManager.loadFromResource() it adds structures/ on the front and .nbt on the end of the ResourceLocation's path. So for the 2 apis I think your ResourceLocation should be either ResourceManager xolcore:structures/test_schem.nbt StructureTemplateManager xolcore:test_schem
  9. You need to show exactly what you are doing. All we have is a random code snippet that shows none of the relevant information. i.e. what the ResourceLocation actually is and what your file strcuture looks like.
  10. If it works on the client side that means the file must be in the assets folder? i.e. part of the resource pack. Structures should be in the data folder, the data pack.
  11. Post the debug.log That log is incomplete, e.g.
  12. Looks like an issue with the controllable mod. From the context of what it is doing, I would guess it is some issue with the configuration file? Check you have the latest version then contact the mod author to ask how to fix it.
  13. Please put your logs on a file sharing site. Don't post them directly into the forum. They are impossible to search, especially when there are many posts. Looks like you have a mod that is for 1.18 or before that has mixed into one of Minecraft's classes and broken it? If you posted a link to the debug.log it might have some clue about which mod.
  14. Conflict between whisperwoods and betteranimalsplus. Check you have the latest versions then contact the mod authors.
  15. Your posted code works for me. (Tested with 1.18.2) The original code you posted didn't have the subscribe annotations. So, it wasn't the real code. Probably still isn't?
  16. Doing it that way means you are creating a new array every time you call get() You can use Supplier<Block>. RegistryObject extends Supplier. And you create the list statically as long as you aren't calling get on the RegistryObjects until runtime. Something like: static final RegistryObject<Block> ONE = ...; static final RegistryObject<Block> TWO = ...; static final List<Supplier<Block>> BLOCK_LIST = List.of(ONE, TWO, () -> Blocks.STONE);
  17. You should post the entire *real* code. We aren't going to spend time trying to debug code you aren't actually using.
  18. Can't really help you if you don't post the up-to-date code. If your code is anything like the link you posted before, you have a problem here: https://github.com/DJ-Laser/BetterAllaysMod/blob/7d00639cd3aceef113e4ed093b15c38ae0e50230/src/main/java/com/djlaser/betterallays/block/ModBlocks.java#L39 You use SmallJadeBude.get() but that block isn't registered yet. What you should do is make your TemplateBuddingBlock take a list of RegistryObject<Block> instead of blocks directly. That way you don't have to worry about the ordering. You call get() when you need the real object at runtime which is well after all the blocks have been registered.
  19. player.level.dimension() == Level.OVERWORLD
  20. https://forums.minecraftforge.net/topic/117925-forge-1192-43147-crashing-on-startup-with-exit-code-1/#comment-519007 Error with graphics driver, see the above thread for a possible fix. Otherwise contact the manufacturer.
  21. No, that is the latest log. It doesn't show the mod ids for the mods. But you have both rei (roughly enough items) and jei (just enough items) installed which won't work.
  22. Install the 1.19.2 version of journeymap https://www.curseforge.com/minecraft/mc-mods/journeymap/files/all?filter-game-version=1738749986%3A73407
  23. Issue with the tinker's construct mod, check you have the latest version then contact the mod author.
  24. You have 4 mods that want a different version of forge. Try upgrading to the latest version of forge. You will need the latest preview version of optifine. https://github.com/sp614x/optifine/issues/7127 Your actual crash is with the supplementaries mod: Check you have the latest version then contact the mod author.

Important Information

By using this site, you agree to our Terms of Use.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions โ†’ Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.