mirror of
https://github.com/minetest-mods/ropes.git
synced 2025-02-17 18:33:43 +01:00
generalize the wood and sticks needed for recipes
This commit is contained in:
@ -22,15 +22,15 @@ minetest.register_craftitem("ropes:ropesegment", {
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "ropes:ropeladder_top",
|
output = "ropes:ropeladder_top",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'group:vines','default:stick','group:vines'},
|
{'group:vines','group:stick','group:vines'},
|
||||||
{'group:vines','default:stick','group:vines'},
|
{'group:vines','group:stick','group:vines'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "ropes:1rope_block",
|
output = "ropes:1rope_block",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:wood',},
|
{'group:wood',},
|
||||||
{'group:vines',},
|
{'group:vines',},
|
||||||
{'group:vines'}
|
{'group:vines'}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user