Jump to content

founderio

Members
  • Posts

    1
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • URL
    http://dhelixnet.de
  • Location
    Limburgerhof, Germany
  • Personal Text
    Hello everyone!

founderio's Achievements

Tree Puncher

Tree Puncher (2/8)

1

Reputation

  1. Using -1 will allow any Metadata to be used in the recipe, but it will probably not give you the correct wood blocks.... But you could add the recipes in a simple for loop. for(int i = 0; i <= 3; i++) { GameRegistry.addShapelessRecipe(new ItemStack(Block.planks, 3, i), new Object[] { new ItemStack(Block.woodSingleSlab, 1, i), new ItemStack(Block.woodSingleSlab, 1, i), new ItemStack(Block.woodSingleSlab, 1, i), new ItemStack(Block.woodSingleSlab, 1, i), new ItemStack(Block.woodSingleSlab, 1, i), new ItemStack(Block.woodSingleSlab, 1, i) }); } that should work.
×
×
  • Create New...

Important Information

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