Hey !
I'm changing some vanilla recipes in my mod.
I want that all tree Log blocks gives me 3 planks instead of 4, but it doesn't work.
GameRegistry.addRecipe(new ItemStack(Blocks.planks, 3), "A", 'A', Blocks.log);
But it works for 3 sticks instead of 4 :
GameRegistry.addRecipe(new ItemStack(Items.stick, 3), "A", "A", 'A', Blocks.planks);
Can someone help me?