1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-14 11:50:18 +02:00

Added chainlink fence gate. Place a fence back into the crafting grid to get a

gate.  Place it, then click it to open/close.
This commit is contained in:
Vanessa Ezekowitz
2012-09-30 21:16:41 -04:00
parent c6b2bde0a1
commit 87e5ed95a0
7 changed files with 105 additions and 4 deletions

View File

@ -1157,3 +1157,19 @@ minetest.register_craft( {
{ "default:steel_ingot", "default:iron_lump", "default:steel_ingot" }
},
})
minetest.register_craft( {
type = "shapeless",
output = "homedecor:fence_chainlink_gate_closed",
recipe = {
"homedecor:fence_chainlink"
},
})
minetest.register_craft( {
type = "shapeless",
output = "homedecor:fence_chainlink",
recipe = {
"homedecor:fence_chainlink_gate_closed"
},
})