From 05b2a19bacf2cd1b5e2f7a740c2758445cc40435 Mon Sep 17 00:00:00 2001 From: Ross Swartz Date: Tue, 11 Jun 2013 23:58:05 -0300 Subject: [PATCH] Add stone and cobblestone to Ore Dictionary --- common/net/minecraftforge/oredict/OreDictionary.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/net/minecraftforge/oredict/OreDictionary.java b/common/net/minecraftforge/oredict/OreDictionary.java index e3abd058d..53d8d6646 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 =