mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-24 08:23:47 +01:00
Allow swapping between default and ropes ladder by crafting (#29)
This commit is contained in:
parent
05db0b84ad
commit
6b42fad8f5
@ -67,6 +67,19 @@ steel_name = S("Steel Ladder")
|
||||
|
||||
texture_overlay = ""
|
||||
|
||||
else
|
||||
-- Swap between normal and extendable ladders
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "ropes:ladder_wood",
|
||||
recipe = {"default:ladder_wood"},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "ropes:ladder_steel",
|
||||
recipe = {"default:ladder_steel"},
|
||||
})
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
|
Loading…
Reference in New Issue
Block a user