Added mud and mudballs to the Ore Dictionary. Closes #877

This commit is contained in:
Adubbz 2016-12-03 09:38:04 +11:00
parent 6e7c6ef76b
commit 0be9d68225
1 changed files with 5 additions and 2 deletions

View File

@ -319,7 +319,9 @@ public class ModCrafting
OreDictionary.registerOre("stickWood", new ItemStack(BOPBlocks.bamboo));
OreDictionary.registerOre("stickWood", BlockBOPPlant.paging.getVariantItem(BOPPlants.RIVERCANE));
OreDictionary.registerOre("ballMud", new ItemStack(BOPItems.mudball));
OreDictionary.registerOre("blockMeatRaw", new ItemStack(BOPBlocks.flesh, 1, 0));
OreDictionary.registerOre("blockGrass", new ItemStack(BOPBlocks.grass, 1, BlockBOPGrass.BOPGrassType.LOAMY.ordinal()));
@ -328,7 +330,8 @@ public class ModCrafting
OreDictionary.registerOre("blockGrass", new ItemStack(BOPBlocks.grass, 1, BlockBOPGrass.BOPGrassType.DAISY.ordinal()));
OreDictionary.registerOre("blockGrass", new ItemStack(BOPBlocks.grass, 1, BlockBOPGrass.BOPGrassType.ORIGIN.ordinal()));
OreDictionary.registerOre("blockGrass", new ItemStack(Blocks.GRASS));
OreDictionary.registerOre("blockMud", new ItemStack(BOPBlocks.mud));
OreDictionary.registerOre("blockDirt", new ItemStack(Blocks.DIRT));
OreDictionary.registerOre("foodMushroompowder", new ItemStack(BOPItems.shroompowder));