mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-12-24 17:50: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({
|
||||
output = "fishing:pole",
|
||||
recipe = {
|
||||
{"", "", "default:stick" },
|
||||
{"", "default:stick", "farming:string"},
|
||||
{"default:stick", "", "farming:string"},
|
||||
{"", "", "group:stick" },
|
||||
{"", "group:stick", "farming:string"},
|
||||
{"group:stick", "", "farming:string"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "fishing:pole",
|
||||
recipe = {
|
||||
{"", "", "default:stick" },
|
||||
{"", "default:stick", "moreblocks:rope"},
|
||||
{"default:stick", "", "moreblocks:rope"},
|
||||
{"", "", "group:stick" },
|
||||
{"", "group:stick", "moreblocks:rope"},
|
||||
{"group:stick", "", "moreblocks:rope"},
|
||||
}
|
||||
})
|
||||
if minetest.get_modpath("ropes") ~= nil then
|
||||
minetest.register_craft({
|
||||
output = "fishing:pole",
|
||||
recipe = {
|
||||
{"", "", "default:stick" },
|
||||
{"", "default:stick", "ropes:rope" },
|
||||
{"default:stick", "", "ropes:rope" },
|
||||
{"", "", "group:stick" },
|
||||
{"", "group:stick", "ropes:rope" },
|
||||
{"group:stick", "", "ropes:rope" },
|
||||
}
|
||||
})
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user