Make daylight sensor recipe use ore dictionary wooden slabs Closes #1565

This commit is contained in:
Lex Manos 2014-12-10 05:18:42 -08:00
parent 924db0ff03
commit 66018bd168

View file

@ -134,6 +134,7 @@ public class OreDictionary
replacements.put(new ItemStack(Items.stick), "stickWood");
replacements.put(new ItemStack(Blocks.planks), "plankWood");
replacements.put(new ItemStack(Blocks.planks, 1, WILDCARD_VALUE), "plankWood");
replacements.put(new ItemStack(Blocks.wooden_slab, 1, WILDCARD_VALUE), "slabWood");
replacements.put(new ItemStack(Blocks.stone), "stone");
replacements.put(new ItemStack(Blocks.stone, 1, WILDCARD_VALUE), "stone");
replacements.put(new ItemStack(Blocks.cobblestone), "cobblestone");
@ -203,6 +204,7 @@ public class OreDictionary
new ItemStack(Blocks.jungle_stairs),
new ItemStack(Blocks.acacia_stairs),
new ItemStack(Blocks.dark_oak_stairs),
new ItemStack(Blocks.wooden_slab),
new ItemStack(Blocks.glass_pane),
new ItemStack(Blocks.stained_glass)
};