So I am trying to modify some simple aspects of Minecraft in an attempt to get a grasp of how modding works.
I wanted to do 3 things.
1. Make a recipe for arrows using cobblestone and planks. (Done)
2. Make it so that the player does not heal at full health by default.
3. Make it so that when an entity falls on farmland, it does not un-till.
Now, #1 I have managed to do in the public void that loads FML Initialization.
GameRegistry.addRecipe(new ItemStack(Item.arrow, 4), "c", "p","p",'c', Block.cobblestone, 'p', Block.planks);
#2 and #3 I have only managed to achieved by editing baseclasses.
#2:
#3:
While searching for an answer, I stumbled upon Reflection and ASM, but I understood how to use neither from the tutorials.
Any help would be super greatly appreciated. Thanks in advance, Kaz.