Hello there I have a code for a crafting recipe with dye powder with color but I keep getting a NullPointerException
Code :
ItemStack greenColorStack = new ItemStack(Item.dyePowder,1,2);
ItemStack coalStack = new ItemStack(Item.coal);
ItemStack brownColorStack = new ItemStack(Item.dyePowder,1,3);
GameRegistry.addRecipe(new ItemStack(this.camo), " g ", "bcb", " g " ,
'g', greenColorStack, 'b', brownColorStack , 'c' , coalStack);
Error :
Thanks, Graphic