Luis_ST
Members-
Posts
5704 -
Joined
-
Last visited
-
Days Won
72
Everything posted by Luis_ST
-
1.20.1 sudden freeze after playing normal for hours pls help
Luis_ST replied to RileyStorm's topic in Support & Bug Reports
The error is caused by the worldgen/noise alternate_surface from namespace 'eco'. Eco could be a Mod or a Datapack you are using there are no more infos in the crash-report nor the log. -
[1.20.1] How do I modify Minecraft classes when my mod is loading
Luis_ST replied to btuh's topic in Modder Support
I personally don't use it in my mods, you can look at the generated class files in run/.mixin.out to see if there is a difference. If they are not overriden in the vanilla chicken then yes -
1.20.1 sudden freeze after playing normal for hours pls help
Luis_ST replied to RileyStorm's topic in Support & Bug Reports
Try without 'eco' -
[1.20.1] How do I modify Minecraft classes when my mod is loading
Luis_ST replied to btuh's topic in Modder Support
First of all your Mixin class should be abstract. Sorry, I didn't mention that if the method you want to change is not implemented in the target class, you can just override it like you would without mixin. You should use as few mixins as possible -
[1.20]How to use Tesselator for line drawing
Luis_ST replied to RerturnZero's topic in Modder Support
Please create your own thread. -
[1.20.2] Registering EntityType Problems
Luis_ST replied to chrisicrafter27's topic in Modder Support
The registry override seems to be working but vanilla has a problem to use the override instead the default entity the pig is used. Have you tried to use debugger to find the cause why vanilla uses the big instead of your entity? -
Any forge on my minecraft doens't work
Luis_ST replied to Guccizinho's topic in Support & Bug Reports
A log that contains something that indicates that you are using forge and because of this the game crashes whether forge or a mod is causing the problem does not matter. Because the log you posted contains a crash from multimc and not from forge. -
[1.20.1] How Can I add Custom Effect to Custom Food ?
Luis_ST replied to gbln00's topic in Modder Support
Your MobEffect (CantSwimEffect) is a registry object, you must not create a new instance of it you should use the one your registered. -
[1.20.1] How Can I add Custom Effect to Custom Food ?
Luis_ST replied to gbln00's topic in Modder Support
Please post ful log. The error uses cantSwimEffect but in your code you use CantSwimEffect, make sure this is not the problem. -
[1.20.2] Registering EntityType Problems
Luis_ST replied to chrisicrafter27's topic in Modder Support
Please post the debug.log, it could be that you can not override EntityTypes but im not sure. -
I'm sorry, but paste.ee does not support very large files, the file will simply be cut off. Your debug.log does not contain any error that would explain the crash of the game.
-
Any forge on my minecraft doens't work
Luis_ST replied to Guccizinho's topic in Support & Bug Reports
Then please do that -
Any forge on my minecraft doens't work
Luis_ST replied to Guccizinho's topic in Support & Bug Reports
In the log you post MultiMC is crashing this is no problem with forge. If you have problems with forge post a related log. -
[1.20.1] How do I modify Minecraft classes when my mod is loading
Luis_ST replied to btuh's topic in Modder Support
Please post the updated code (full class) and the error you get -
[1.20.1] How Can I add Custom Effect to Custom Food ?
Luis_ST replied to gbln00's topic in Modder Support
Use FoodProperties.Builder#effect which takes a MobEffectInstance Supplier and the chance of the effect (0.0 - 1.0) I would recommend to follow the java naming convention. -
Please create your own thread and post there the debug.log from the logs folder.