Everything posted by warjort
-
Modded item crashing on right click
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
-
Set a new power layer to a new entity (like the field around charged creeper)
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
-
Problem with use() function in block class
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
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?
-
Exit code: -1 (java.lang.ExceptionInInitializerError: Null)
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.
-
i am makeing a modpack for me and my freinds and the server wont start with the modpack idk why
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.
-
cannt connect to minecraft 1.19.2 Forge Server "internal server error"
and
-
Exit code: -1 (java.lang.ExceptionInInitializerError: Null)
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]
Report it to the mod author.
-
I Need help, I can't load up minecraft due to some sort of hat problem
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?
-
Getting BeehiveBlockEntity data
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.
-
[1.18.2] Modifying Loot Table Pools
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
-
How to get runtime fields and methods name?
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
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
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.
-
How do I add my custom Registry to RegistryManager.ACTIVE? Is it possible?
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.
-
Mc won't open after updating mods: The game crashed whilst initializing game Error: java.lang.NoSuchFieldError: INSTANCE
- Modded crashing - Exception in server tick loop
Use the correct version of optifine for your version of forge. See their download page, including preview releases.- Minecraft launcher crashing
There is no error in that log. Post a link to your launcher_log.txt- Game crash when starting
Duplicate post.- Exit code: -1 (java.lang.ExceptionInInitializerError: Null)
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.- Crash on starting game
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?- I Could use some help...
Issue with immersive portals - probably a conflict with another mod? There is an earlier warning where immersive portals detected a conflict with xlPackets- error code 1 help
https://forums.minecraftforge.net/topic/123710-minecraft-1194-forge-crash/- How Do I Fix This > Epic Fight (epicfight) encountered an error during the sided_setup event phase
Check you have the latest version the contact the mod author. But the logs/debug.log might have more information about this issue? - Modded crashing - Exception in server tick loop
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.