From 0be9d682251133c604e3f292748559961a7ad345 Mon Sep 17 00:00:00 2001 From: Adubbz Date: Sat, 3 Dec 2016 09:38:04 +1100 Subject: [PATCH] Added mud and mudballs to the Ore Dictionary. Closes #877 --- src/main/java/biomesoplenty/common/init/ModCrafting.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/java/biomesoplenty/common/init/ModCrafting.java b/src/main/java/biomesoplenty/common/init/ModCrafting.java index 4251a89f9..5de66da56 100644 --- a/src/main/java/biomesoplenty/common/init/ModCrafting.java +++ b/src/main/java/biomesoplenty/common/init/ModCrafting.java @@ -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));