Marc_IceBlade Posted November 26, 2018 Share Posted November 26, 2018 (edited) 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, 2018 by Marc_IceBlade Problem Solved Quote Link to comment Share on other sites More sharing options...
Synoot Posted November 26, 2018 Share Posted November 26, 2018 (edited) 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, 2018 by Synoot word fix, i am very good at messing up Quote Link to comment Share on other sites More sharing options...
Marc_IceBlade Posted November 26, 2018 Author Share Posted November 26, 2018 Managed to get it to running again, thanks for the help ^^. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.