Posted August 15, 201411 yr Hi guys, i need your help. I created custom armor and recipe for them in my mod, and when i try craft my armor, minecraft crash with error: http://pastebin.com/beAME2ZP registry and recipes: http://pastebin.com/1mMdm7dT armor class: http://pastebin.com/JaH9tCSG
August 15, 201411 yr Hi It looks like you cut and pasted fragments of your Item initialisation and recipe code, but I'm guessing you haven't initialised the item properly by the time you create the recipe. Your recipe then contains an ItemStack with a null Item, so when you first use it (the crafting tries to render it) tries to use the null item reference and crashes. Use preInit for items and postInit for recipes. See here for more background information. http://greyminecraftcoder.blogspot.com.au/2013/11/how-forge-starts-up-your-code.html -TGG
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.