G'Day Everyone,
I am trying to teach myself modding for Minecraft. Is there anywhere that I can learn the differences in Forge code from Minecraft 1.8 to 1.11.2? For example...
GameRegistry.addRecipe(new ItemStack(Blocks.sapling),
"XXX",
"XYX",
"XXX",
'X', Blocks.leaves, 'Y', Items.stick);
creates an oak sapling in Minecraft 1.8.
The 1.11.2 version of this code
GameRegistry.addRecipe(new ItemStack(Blocks.SAPLING),
"XXX",
"XYX",
"XXX",
'X', Blocks.LEAVES, 'Y', Items.STICK);
doesn't. The only difference that I can see is the capitalisation.
Any help is appreciated.
thanks