1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-30 08:20:32 +02:00

Fix perfect fishing pole recipe

This commit is contained in:
Ombridride 2015-03-12 02:03:33 +01:00
parent 83056f613d
commit bd6b5b5006

View File

@ -44,13 +44,13 @@ minetest.register_craft({
end
-- Mithril Fishing Pole
if minetest.get_modpath("moreore") ~= nil then
if minetest.get_modpath("moreores") ~= nil then
minetest.register_craft({
output = "fishing:pole_perfect",
recipe = {
{"", "", "moreoress:mithril_ingot" },
{"", "moreoress:mithril_ingot", "mobs:spider_cobweb" },
{"moreoress:mithril_ingot", "", "mobs:spider_cobweb" },
{"", "", "moreores:mithril_ingot" },
{"", "moreores:mithril_ingot", "mobs:spider_cobweb" },
{"moreores:mithril_ingot", "", "mobs:spider_cobweb" },
}
})
end