Jump to content

warjort

Members
  • Posts

    5420
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by warjort

  1. Looks like a mixin is breaking the Block class. It's probably related to those errors about the moonlight mod being missing?
  2. https://github.com/teamfusion/rottencreatures/issues/23
  3. If you are posting compiler errors, you are in the wrong place. You want a learning java forum. You also don't understand how static initalisation or suppliers/deferred access works. https://forums.minecraftforge.net/topic/122471-custom-boat-119/#comment-538014 https://forums.minecraftforge.net/topic/123532-crash-in-my-mods-fluid-setup-class-what-am-i-doing-wrong-here-solved/#comment-536786 or you can search to find the many other threads where this is discussed. The correct code uses RegistryObjects properly - something like (untested pseudo code) public static final DeferredRegister<Block> BLOCKS = ... // Use a registry object public static final RegistryObject<Block> VOLCANIC_SANDSTONE_STAIRS = BLOCKS.register("volcanic_sandstone_stairs", // deferred access to the constructor - you can't create the actual blocks until the RegisterEvent happens () -> new StairBlock( // VOLCANIC_SANDSTONE is a RegistryObject<Block>/Supplier<Block> so you use get() for the real Block. VOLCANIC_SANDSTONE.get().defaultBlockState(), BlockBehaviour.Properties.copy(VOLCANIC_SANDSTONE.get())); You will also need to make sure the VOLCANIC_SANDSTONE RegistryObject is registered with the DeferredRegister before the stairs, otherwise those get()s will fail.
  4. Read that link and the links on that post. It's an issue with your AMD graphics driver. Maybe you got a broken driver from a windows update if that AMD FAQ applies to you?
  5. It will happen again. The next time one of Rotten Creature's mobs spawns with Mekanism armor.
  6. https://forums.minecraftforge.net/topic/123710-minecraft-1194-forge-crash/?do=findComment&comment=537530
  7. Rotten creatures is incorrectly interpreting some mechanism configuration.
  8. If you mean the real recipe objects, then no. Recipes are loaded when the datapacks are loaded. i.e. when the game loads a save
  9. Something is taking too long on the server thread. You can use a mod like https://www.curseforge.com/minecraft/mc-mods/spark to help diagnose these kind of problems. See their documentation for how to use it. It was doing something in chunk loading at the 60 second time out, but that is not necessarily what took 60 seconds. I have underlined 2 mods that are modifying code in that area.
  10. Broken client side only mod you don't need on the server.
  11. The error is on the server. You have that mod I underlined above trying to access a field that does not exist. That suggests there it has a mismatch with another mod, probably some other dawncraft mod? Only the mod author can help you. Guess mode enabled: The error is related to the "KorokIntroEntity". I would guess the reason that player crashes is because they are the only one in an area where that mob exists (maybe it is a boss)? When they join, the chunks around them are loaded and one of those chunks contains that broken entity.
  12. Check you have the latest version then contact the mod author.
  13. You need to use java 17
  14. Check you have the latest version then contact the mod author.
  15. https://forums.minecraftforge.net/topic/123884--/#comment-538070
  16. warjort

    ,

    Some issue with a fluid in a recipe for the create mod. The error does not say which recipe or which mod the recipe belongs to. You should check all your create related mods are up-to-date and then contact their mod authors to see if they recognise the problem.
  17. Looks like some conflict between those mods and/or Optifine. Check you have the latest versions then contact the mod authors. Also try without optifine to see if that is what is causing the problem.
  18. You also know you can have different DeferredRegisters for different internal categories of your items? e.g. psuedo code: // Real items that should be shown in creative tabs public static final DeferredRegister<Item> REAL_ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, MODID); public static final RegistryObject<Item> TEST = REAL_ITEMS.register("test", () -> new Item(new Item.Properties())); // Internal items the user shouldn't have direct access to public static final DeferredRegister<Item> META_ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, MODID); public static final RegistryObject<Item> META = META_ITEMS.register("meta", () -> new Item(new Item.Properties()));
  19. Conflict between sophisticatedcore and biggerstacks. Check you have the latest versions then contact the mod authors. From the error, I would guess sophisticatedcore changed their code and biggerstacks hasn't been updated to reflect the change.
  20. Is your "actualItem" a BlockItem? Then see Block.byItem() Otherwise we can't help you without more information. If you want help, you need to post a project on github that reproduces your problem. Incomplete information posted in the forums will likely just mean your question gets ignored.
×
×
  • Create New...

Important Information

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