mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-01-25 16:31:08 +01:00
Refactor trapdoor crafting recipes
This commit is contained in:
parent
3f5e4efe52
commit
f48b34e3ca
1 changed files with 2 additions and 4 deletions
|
@ -579,7 +579,6 @@ minetest.register_craft({
|
||||||
recipe = {
|
recipe = {
|
||||||
{'group:wood', 'group:wood', 'group:wood'},
|
{'group:wood', 'group:wood', 'group:wood'},
|
||||||
{'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({
|
minetest.register_craft({
|
||||||
output = 'doors:iron_trapdoor',
|
output = 'doors:iron_trapdoor',
|
||||||
recipe = {
|
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'},
|
||||||
{'', '', ''},
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue