I am trying to make some recipes for converting wood from mod logs to vanilla and I have a set of recipes for each vanilla log. Here is the snippet of the recipes:
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Block.wood, 4, 0), " x ", "xxx", " ", 'x', "logWood"));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Block.wood, 4, 1), " x ", " xx", " x ", 'x', "logWood"));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Block.wood, 4, 2), " ", "xxx", " x ", 'x', "logWood"));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Block.wood, 4, 3), " x ", "xx ", " x ", 'x', "logWood"));
The problem I'm having with this code is that the 4th recipe is producing the same log as the 2nd. I have no idea why.