That is an error on the server for a different mod.
If the client log does not contain the error, the next step is to look at the server's debug.log with the -Dforge.logging.mojang.level=debug in your user_jvm_args.txt
[23ago.2022 11:42:27.250] [Render thread/ERROR] [net.minecraftforge.fml.javafmlmod.FMLModContainer/]: Exception caught during firing event: net/minecraftforge/client/IItemRenderProperties
Index: 1
Listeners:
0: NORMAL
1: ASM: class com.legacy.mining_helmet.MiningHelmetRegistry onRegister(Lnet/minecraftforge/registries/RegisterEvent;)V
java.lang.NoClassDefFoundError: net/minecraftforge/client/IItemRenderProperties
This is an error in the mining helmet mod you have. I don't even see the version you have on curseforge?
https://www.curseforge.com/minecraft/mc-mods/miners-helmet/files/all?filter-game-version=1738749986%3a73407
This is the latest version for 1.19: https://www.curseforge.com/minecraft/mc-mods/jei/files/3903068
jei-1.19-forge-11.1.1.239.jar you have jei-1.19-forge-11.0.0.206.jar
Thank you, for some reasone I didn't tried that and I thought it wasn't necessary since you override it ๐ Added outside the base object, now it works
One of these mods has injected some bad code into the Minecraft class.
From what is being accessed I would guess is it better_loading_screen? But it could be anything mentioned above.
NOTE: For some bizarre reason better loading screen has 2 different v1.4.0 jars, one is for 1.16 the other for 1.18 - make sure you have the correct one.
https://www.curseforge.com/minecraft/mc-mods/betterloadingscreen/files
If that doesn't fix it, you are probably going to have to rebuild this modpack from scratch and test each mod works individually.
That way you will know which mod causes the problem and not hit roadblocks like this.
Mods like Radium are not recommended to use. Those magic performance Mods increasing the game performance by breaking game logic.
This "new game logic" can then lead issues and conflicts with other Mods. If you don't need Radium to 100% then you should remove it.
In the class ModEventBusEvents you are registering a recipe type using a vanilla registry! You should instead use the Forge registry, ForgeRegistries.RECIPE_TYPES, similar to how you register block and items. Also, looks like you missed an 's' in 'foodstuffs' in the smoked_steak.json file
21:35:31[ERROR] [ne.mi.ev.EventSubclassTransformer/EVENTBUS]: An error occurred building event handler
java.lang.RuntimeException: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER
-- snip --
at java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?] {}
at com.minecraftserverzone.jrhc.setup.capabilities.PlayerStatsProvider.serializeNBT(PlayerStatsProvider.java:38) ~[jrhc-1-18-x.jar%2371!/:1-18-x] {re:classloading}
Looks like an issue with the jrhc mod. It is trying to load client/gui classes on the server.
Check you have the latest version then contact the mod author.
1
point
Important Information
By using this site, you agree to our Terms of Use.