Hey all,
So I have been working on some modding and I keep running into an error. Basically, I have a shaped crafting recipe that uses Stone, Clay, and a Water bucket. However, I cannot add the clay to the recipe without it crashing. This is what I have been trying:
addRecipe(new ItemStack(pasteCement, 1) new Object[]{"XYZ", "AZZ", 'X', Block.stone, 'Y', Material.clay, 'A', Item.bucketWater});
Causes a null pointer exception on that line. No idea what's wrong or - apparently - how to use clay in a recipe.
Any thoughts?