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:
16
crafts.lua
16
crafts.lua
@ -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"
|
||||
},
|
||||
})
|
||||
|
Reference in New Issue
Block a user