Posted November 26, 20186 yr Hello, I am fairly new to modding with Forge and modding in general, only started to mod with forge yesterday. While I do have some experience and try to teach everything to myself, I have run into a strange problem. I had been working on my first mod, which adds just a few items at the moment and yesterday everything worked fine. Today when I booted up my PC and added three lines of code, which I checked to be correct, Minecraft crashes during loading phase 6/7. Here is the crashlog that happens when I try to run Minecraft from eclipse. I will be glad to share any of my code if necessary. Thx in advance, -Marc Crash-Report.txt Edited November 28, 20186 yr by Marc_IceBlade Problem Solved
November 26, 20186 yr You may have done something like public static final Item ITEM_1 = new ItemBase('item_1'); public static final Item ITEM_2 = new ItemBase('item_1'); where you give both of the items the same registry name. This is all I can infer via reading the log you gave, so check over your ItemInit and BlockInit classes (or where ever you register them) and make sure the registry names are different. Edited November 26, 20186 yr by Synoot word fix, i am very good at messing up
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.