warjort
Members-
Posts
5420 -
Joined
-
Last visited
-
Days Won
175
Everything posted by warjort
-
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
-
Problem with use() function in block class
warjort replied to Eveningofstorms's topic in Modder Support
https://forums.minecraftforge.net/search/?q=sidedsuccess&quick=1&type=forums_topic&nodes=70 -
1.18.2 For Some Reason my pack is having datapack errors
warjort replied to GSharkGamer's topic in Support & Bug Reports
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? -
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.
- 1 reply
-
- 1
-
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.
-
Forge Server 1.19.3 [Error with CarryON mod]
warjort replied to Bobi94's topic in Support & Bug Reports
Report it to the mod author. -
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.
-
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
-
Sorry I don't use discord. LIke I said, ask on discord if you can't find it.
-
How to detect right click in ArmorItem extended class
warjort replied to Casa Nuestra's topic in Modder Support
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 -
Changing how an entity renders extending a vanilla entity 1.19.2
warjort replied to Goosums's topic in Modder Support
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. -
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.
-
Modded crashing - Exception in server tick loop
warjort replied to Mauoomba's topic in Support & Bug Reports
Use the correct version of optifine for your version of forge. See their download page, including preview releases. -
There is no error in that log. Post a link to your launcher_log.txt
-
Duplicate post.
-
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?
-
Issue with immersive portals - probably a conflict with another mod? There is an earlier warning where immersive portals detected a conflict with xlPackets
-
https://forums.minecraftforge.net/topic/123710-minecraft-1194-forge-crash/
- 1 reply
-
- 1