Everything posted by warjort
-
I need help with a weird crash that I have never experienced before
Issue with create, probably a conflict with another mod? Check you have the latest version then contact mod author.
-
Payload may not be larger than 1048576 bytes
One of your mods is trying to send a network packet that is too big. The logs you have posted don't show the error. Try adding the following system property to your user_jvm_args.txt -Dforge.logging.mojang.level=debug To see if it will display an error in the server logs/debug.log that shows which mod. Otherwise, the only way to find it is to experiment with removing mods until the problem goes away. (Backup your world before removing mods).
-
Minecraft Forge 1.19.2 error
One of your mods has broken networking code. Usually the only way to find it is to experiment with removing mods until the problem goes away. (Backup your world before removing mods). But if you post a link to your logs/debug.log it might have some clue. Like I said, usually not though.
-
Error at play minecraft with mods, i cant find error in console
Install the latest preview release of optifine.
-
org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Oculus issue: https://github.com/Asek3/Oculus/issues/257
-
Minecraft game crashed (Need help!)
You need to post a link to the logs/debug.log so we can see the error(s).
-
Error: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Oculus issue: https://github.com/Asek3/Oculus/issues/257
-
Error: java.lang.NoClassDefFoundError: Could not initialize class net.minecraft.client.renderer.entityRenderers
Looks like one of your mods wants curios installed or you have the wrong version?
-
org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Issue with valhelsia_core, others have said it conflicts with optifine.
-
Exit code -1, I can't find which mod is causing issues. I downloaded a few in succession and can't find it in the crash report.
Issue with valhelsia_core, others have said it conflicts with optifine.
-
I keep crashing with the 1 exit code
There is no error in that log. If it is the full log, post the launcher_log.txt without restarting the launcher after the crash.
-
Help with modpack for Friends
Use java 17, mixin doesn't support java 19
-
server wont start... MC 1.19.2 Forge
One of your mods is trying to reference client side only classes on the server. From the error I would guess it is either twighlight forest or voidscape? Check you have the latest versions then contact the mod authors.
-
Minecraft game crashed (Need help!)
Invalid/corrupted config file. It's in the config folder. If you don't have a backup, delete the file and it will be recreated with default values.
-
Mod loading error has occurred
Nope. 🙂
-
Exception in server tick loop
It looks like you have a minecraft server already running on that network port. Or maybe some other operating system service is? If it's the latter, you can change the "server-port" number in server.properties
-
Exception in server tick loop
That crash does not show the real error. Post a link to your logs/debug.log
-
Forge version: 43.2.0 (1.19.2) crash - java.util.ConcurrentModificationException: null
The error does not identify a problem mod. Probably the only way you will find it is to experiment with removing mods until the problem goes away. (Backup your world before removing mods). Start with optifine and any other "optimisation" mods you have.
-
Rendering overlay
Looks like an issue with the tombstone mod trying and failing to modify oculus? Check you have the latest version then contact the mod author.
-
1.19.2 Crash few seconds after loading world?
One of your mods is using the random number generator incorrectly. The error message does not identify which one. This is what I found when searching github for similar issues: https://github.com/search?q=Accessing+LegacyRandomSource+from+multiple+threads&type=issues Maybe one of them matches a mod you are using?
-
Need Help
https://github.com/Asek3/Oculus/issues/257
-
The game crashed whilst rendering overlay Error: java.util.ConcurrentModificationException: null
Issue with resourcefulconfig, check you have the latest version then contact the mod author.
-
[1.19.3 SOLVED] Tree works but sapling doesn't
Your ABYSSAL_TREE configured feature has the name minecraft:abyssal_tree ?
-
Crashed (version 1.18.2)
Looks like the MonstersGirls mod wants a different version of geckolib? Contact the mod author.
-
Display text on an custom GeckoLib entity?
This is not the Geckolib support forum. Questions about geckolib should be asked wherever they provide support. But you can display anything you like on any entity by writing your own layer and registering it using EntityRenderersEvent (see the subclasses). There is no vanilla implementation of the behaviour you want, but you can find code to do it EntityRenderer.renderNameTag() Layer is to EntityRenderer as Widget is to Screen.