Posted August 16, 201510 yr Hi, I'm getting a crash in eclipse saying something about my crafting recipes, I went over them a few times trying to fix it but no such luck. Any help will be appreciated! Crash Report/All information: http://pastebin.com/C7q4JDF6 Code in my main file: http://pastebin.com/L0WiEK7x
August 16, 201510 yr Hi One of the three items you use on TinyTools.java:81 is null. Also you should register recipes in init (FMLInitializationEvent) not in preinit (FMLPreInitializationEvent) This link has some info on how to debug this kind of error. http://www.terryanderson.ca/debugging/run.html -TGG
August 16, 201510 yr Registering your items in the FMLInit stage isn't the problem. This is actually a good practice, because if you have other mods depending on your mod, or depend on other mods' items, you want them to be completely initialized before you do your recipes. The problem is you never initialized (created) your itemTinyStick. Just make this one the same way you created all your other items, and you'll be good! Hope I could help!
August 16, 201510 yr Woops, nevermind...thought you were registering them in Init. Like TheGreyGhost said, you should register them in init, but that's not what is causing this error. And no problem, hope it works!
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.