Add stone and cobblestone to Ore Dictionary

This commit is contained in:
Ross Swartz 2013-06-11 23:58:05 -03:00
parent 3794713dd9
commit 05b2a19bac

View file

@ -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<ItemStack, String> replacements = new HashMap<ItemStack, String>();
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 =