mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-12-25 02:00:37 +01:00
replace default:stick by group:stick for crafting fishing:pole with mores stick
This commit is contained in:
parent
6243ec7e50
commit
51e2d7fd60
@ -15,27 +15,27 @@
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "fishing:pole",
|
output = "fishing:pole",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", "default:stick" },
|
{"", "", "group:stick" },
|
||||||
{"", "default:stick", "farming:string"},
|
{"", "group:stick", "farming:string"},
|
||||||
{"default:stick", "", "farming:string"},
|
{"group:stick", "", "farming:string"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "fishing:pole",
|
output = "fishing:pole",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", "default:stick" },
|
{"", "", "group:stick" },
|
||||||
{"", "default:stick", "moreblocks:rope"},
|
{"", "group:stick", "moreblocks:rope"},
|
||||||
{"default:stick", "", "moreblocks:rope"},
|
{"group:stick", "", "moreblocks:rope"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
if minetest.get_modpath("ropes") ~= nil then
|
if minetest.get_modpath("ropes") ~= nil then
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "fishing:pole",
|
output = "fishing:pole",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", "default:stick" },
|
{"", "", "group:stick" },
|
||||||
{"", "default:stick", "ropes:rope" },
|
{"", "group:stick", "ropes:rope" },
|
||||||
{"default:stick", "", "ropes:rope" },
|
{"group:stick", "", "ropes:rope" },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user