Add ladder recipe

This commit is contained in:
oilboi 2020-02-19 08:09:38 -05:00
parent 7be68e35f2
commit b05bcc5a1a

View File

@ -127,3 +127,12 @@ for id,tool in pairs(tool) do
}
})
end
minetest.register_craft({
output = "main:ladder",
recipe = {
{"main:stick","", "main:stick"},
{"main:stick","main:stick", "main:stick"},
{"main:stick", "", "main:stick"}
}
})