Jump to content

Sparhawk

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by Sparhawk

  1. Got it all sorted. Thanks again
  2. I thought it would be something silly. Thanks for that I'll sort that out and see what happens.
  3. It's all I have so far. What am I missing? I'll bet it's something really simple too.
  4. thanks for the reply. this is all I have as I have only just started this.
  5. 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
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.