Hi there, im having issues with a shapeless recipe that has a custom block (added in the same mod) in it. The problem being I get no errors but it wont work ingame. Its not load order related as im adding recipes last. If I replace the custom block for a vanilla one or one of my other custom blocks (that isnt a fence block, see below) it works fine, it also works if I make it a shaped recipe, heres the code I have:
GameRegistry.addShapelessRecipe(new ItemStack(MyMod.MyNewBlock), new Object[]
{
new ItemStack(MyMod.MyOtherNewBlock), new ItemStack(Block.dirt)
});
the only thing I can think of is that the block MyOtherNewBlock is of type BlockFence, would this cause problems?