Make daylight sensor recipe use ore dictionary wooden slabs Closes #1565
This commit is contained in:
parent
924db0ff03
commit
66018bd168
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue