1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-07-01 16:10:22 +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({
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