mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-24 16:33:48 +01:00
generalize the wood and sticks needed for recipes
This commit is contained in:
parent
da5969cdf9
commit
76566ecd90
@ -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'}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user