Jump to content

warjort

Members
  • Posts

    5420
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by warjort

  1. That's 1.18.1 not 1.18.2 (the LTS version). Your error says your tag is not bound. You don't show the relevant code. Don't post snippets in the forum, post all the relevant code to reproduce the problem on github - and post logs to a file sharing site. That is old Tag handling code anyway. The class referenced in that error message doesn't exist in 1.18.2. Tags have had a rewrite since then. But I would guess your real problem is you are trying to run code on the client that should be on the server: https://forums.minecraftforge.net/search/?q=sidedsuccess&quick=1&type=forums_topic&nodes=70
  2. https://github.com/MinecraftForge/MinecraftForge/blob/42115d37d6a46856e3dc914b54a1ce6d33b9872a/src/main/java/net/minecraftforge/client/event/EntityRenderersEvent.java#L63 Examples on github for other mods: https://github.com/search?q=registerLayerdefinitions+language%3AJava&type=code&l=Java
  3. https://forums.minecraftforge.net/search/?q=sidedsuccess&quick=1&type=forums_topic&nodes=70
  4. The first error in your log is: which suggests some incompability between the efdg mod and the epicfight mod. There are two errors at the end of the log: and the crash: i.e. some issue with the faction data for the reputation mod minecraft:pig is usually a sign that there is a reference to an entity that doesn't exist. Maybe you uninstalled the mod for whatever entity is missing?
  5. From my footer: Or from the EAQ (the sticky post at the top of the forum). That information exists so we don't have to waste time answering these repeat questions and can instead use it to help people with real problems.
  6. One of your mods is severly breaking the classloading. Probably with a broken mixin - e.g. it is a mod for a different version of minecraft. I can't tell which one from that log. You will probably have to experiment with removing mods until you find the one that makes the problem go away.
  7. Please don't post on others people's threads unless you are actually helping the original poster. Irrelevant speculation about what is probably not the same problem does not help. Error code -1 is just a general error that occurs for most problems regardless of the cause. It just means the launcher doesn't understand what the problem is. Start your own thread and attach a link to your logs/debug.log as the EAQ tells you to do.
  8. Report it to the mod author.
  9. https://github.com/TeamMidnightDust/MidnightLib/issues/19 Or another mod is breaking the game, but midnight lib does not handle the error gracefully. The logs/debug.log might have further information, but you might have to remove that midnight lib mod to see the real error?
  10. Mixins are not supported in this forum. For your actual question, the BeehiveBlockEntity does not override getUpdatePacket() which means it never sends any data to the client.
  11. The global loot modifiers give you the generated loot as an input. Surely for your feature, all you have to do is detect that something in that list is a music disc and then randomly replace it with your disk. https://github.com/MinecraftForge/MinecraftForge/blob/42115d37d6a46856e3dc914b54a1ce6d33b9872a/src/main/java/net/minecraftforge/common/loot/IGlobalLootModifier.java#L74
  12. Sorry I don't use discord. LIke I said, ask on discord if you can't find it.
  13. Right click is for using the item in the player's hand. The minecraft way to do this is to create your own key binding for this function. https://forge.gemwire.uk/wiki/Key_Mappings
  14. This is a basic java question that normally doesn't get answered here. Except to say buy a book on learning java or use java support forum. But since this is your first post: https://github.com/Goosums/WoollyWonders/blob/0fd272972785bd883fa5779d988c59d09996cdda/src/main/java/goosum/goosum/woollywonders/client/renderer/layer/ExtraWoollySheepFurLayer.java#L25 That model field does not override the final model field in SheepFurLayer. You cannot override fields like you can methods. Even if you could the vanilla field is final. Therefore SheepFurLayer.render() will not reference your model, it will use its own - the vanilla model.
  15. Please don't post snippets in the forum. We need to see the full code to reproduce/understand your problem. Guess mode enabled (I shouldn't have to guess): You don't have something like: SPELL_REGISTRY.register(FMLJavaModLoadingContext.get().getModEventBus()) somewhere in your mod constructor or a method called from it.
  16. Use the correct version of optifine for your version of forge. See their download page, including preview releases.
  17. There is no error in that log. Post a link to your launcher_log.txt
  18. Duplicate post.
  19. That crash report you posted in private. You need to post your logs/debug.log anyway. And do it to a proper file sharing site.
  20. One of your mods is breaking the resource pack configuration. The error does not say which one. The logs/debug.log might have more information?
  21. Issue with immersive portals - probably a conflict with another mod? There is an earlier warning where immersive portals detected a conflict with xlPackets
  22. https://forums.minecraftforge.net/topic/123710-minecraft-1194-forge-crash/
  23. Check you have the latest version the contact the mod author. But the logs/debug.log might have more information about this issue?
×
×
  • Create New...

Important Information

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