1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-10-02 01:10:31 +02:00

replace default:stick by group:stick for crafting fishing:pole with mores stick

This commit is contained in:
crabman77 2015-02-25 00:18:43 +01:00
parent 6243ec7e50
commit 51e2d7fd60

View File

@ -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