diff --git a/common/net/minecraftforge/oredict/OreDictionary.java b/common/net/minecraftforge/oredict/OreDictionary.java index e3abd058d..3557e1619 100644 --- a/common/net/minecraftforge/oredict/OreDictionary.java +++ b/common/net/minecraftforge/oredict/OreDictionary.java @@ -56,12 +56,16 @@ public class OreDictionary registerOre("oreRedstone", Block.oreRedstone); registerOre("oreEmerald", Block.oreEmerald); registerOre("oreQuartz", Block.oreNetherQuartz); + registerOre("stone", Block.stone); + registerOre("cobblestone", Block.cobblestone); } // Build our list of items to replace with ore tags Map replacements = new HashMap(); replacements.put(new ItemStack(Block.planks, 1, WILDCARD_VALUE), "plankWood"); replacements.put(new ItemStack(Item.stick), "stickWood"); + replacements.put(new ItemStack(Block.stone), "stone"); + replacements.put(new ItemStack(Block.cobblestone), "cobblestone"); // Register dyes String[] dyes = @@ -102,6 +106,10 @@ public class OreDictionary { new ItemStack(Block.blockLapis), new ItemStack(Item.cookie), + new ItemStack(Block.stoneBrick), + new ItemStack(Block.stoneSingleSlab), + new ItemStack(Block.stairsCobblestone), + new ItemStack(Block.cobblestoneWall) }; List recipes = CraftingManager.getInstance().getRecipeList();