Refactor trapdoor crafting recipes

This commit is contained in:
Wuzzy 2017-02-06 00:12:52 +01:00
parent 3f5e4efe52
commit f48b34e3ca
1 changed files with 2 additions and 4 deletions

View File

@ -579,7 +579,6 @@ minetest.register_craft({
recipe = {
{'group:wood', 'group:wood', 'group:wood'},
{'group:wood', 'group:wood', 'group:wood'},
{'', '', ''},
}
})
@ -697,9 +696,8 @@ minetest.register_node("doors:iron_trapdoor_open", {
minetest.register_craft({
output = 'doors:iron_trapdoor',
recipe = {
{'mcl_core:steel_ingot', 'mcl_core:steel_ingot', ''},
{'mcl_core:steel_ingot', 'mcl_core:steel_ingot', ''},
{'', '', ''},
{'mcl_core:steel_ingot', 'mcl_core:steel_ingot'},
{'mcl_core:steel_ingot', 'mcl_core:steel_ingot'},
}
})