Advertisement
BlackSpark644

Untitled

May 13th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.69 KB | None | 0 0
  1. override def registerRecipe(): Unit =
  2.     {
  3.         val redstoneStack = new ItemStack(Items.redstone)
  4.         val redstoneBlockStack = new ItemStack(Blocks.redstone_block)
  5.         val woodStack = new ItemStack(Blocks.planks)
  6.  
  7.         GameRegistry.addShapedRecipe(new ItemStack(BasicPowerBank.getItem),
  8.         "rrr",
  9.         "RwR",
  10.         "rrr",
  11.             Character.valueOf('r'), redstoneStack,
  12.             Character.valueOf('R'), redstoneBlockStack,
  13.             Character.valueOf('w'), "plankWood") // This crashes Minecraft (NullPointerException) when I use the "plankWood" or ":plankWood" construction for an OreDict entry, but not when I use the ItemStack definition as above.
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement