(1.12.2) Game crash because of exception in server tick loop
-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
By NukolLodda · Posted
So I'm new to Minecraft modding and I'm not too sure how to make custom shapeless recipes. Basically I have a machine called the alloy furnace with 3 inputs, but some recipes involving it only requires 2 inputs and as a result I want to make it shapeless. Along with that, the 3 input slots don't have any differences between them so it shouldn't matter which slot you put the item in. However, I want to make it so the recipes aren't hardcoded into my mod so instead json files are used instead. However I've yet to figure out how to allow for shapeless recipes. This is the code I've thought of so far, I'd imagine this probably looks like amateur stuff but this really is the best my almost deep fried brain can think of boolean hasIng = false; if (recipe.isPresent()) { for (int i = 0; i < entity.itemHandler.getSlots(); i++) { for (int j = 0; j < recipe.get().getIngredients().size(); j++) { if (entity.itemHandler.getStackInSlot(i) .equals(recipe.get().getIngredients().get(j).getItems()[0])) { hasIng = true; } } } } so if anyone can explain this to me, I'd really appreciate it. -
Here's the crash report, server always crashes when we go in the Ultra and they try to generate new chunks
-
Shooting any bow kicks me from my server with the message "Internal Exception: io.netty.handler.codec.EnconderException: java.lang.NullPointerException". Trying to replicate the issue in a Singleplayer world works fine until i press escape which causes a crash. Seems to be some mod after i've updated them, but i can't figure out which one it is. Happens with all vanilla and modded bows, but not with crossbows. Crashlog:
-
By Noah Dickens · Posted
by the way it started crashing after i deleted mc dungeons and mc legends to free up space also both debug.log and latest.log say "missing mods.toml file" somewhere https://pastebin.com/D9t7MhV9 the game doesnt open when i use my forge installation and it just closes itself, using normal 1.19.3 works fine im sorry i didnt explain sooner
-
-
Topics
Recommended Posts