mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-18 00:08:25 +01:00
Fix perfect fishing pole recipe
This commit is contained in:
parent
83056f613d
commit
bd6b5b5006
@ -15,9 +15,9 @@
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "fishing:pole",
|
output = "fishing:pole",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", "group:stick" },
|
{"", "", "group:stick" },
|
||||||
{"", "group:stick", "farming:string"},
|
{"", "group:stick", "farming:string"},
|
||||||
{"group:stick", "", "farming:string"},
|
{"group:stick", "", "farming:string"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -25,9 +25,9 @@ if minetest.get_modpath("moreblocks") ~= nil then
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "fishing:pole",
|
output = "fishing:pole",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", "group:stick" },
|
{"", "", "group:stick" },
|
||||||
{"", "group:stick", "moreblocks:rope" },
|
{"", "group:stick", "moreblocks:rope" },
|
||||||
{"group:stick", "", "moreblocks:rope" },
|
{"group:stick", "", "moreblocks:rope" },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
@ -36,21 +36,21 @@ if minetest.get_modpath("ropes") ~= nil then
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "fishing:pole",
|
output = "fishing:pole",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", "group:stick" },
|
{"", "", "group:stick" },
|
||||||
{"", "group:stick", "ropes:rope" },
|
{"", "group:stick", "ropes:rope" },
|
||||||
{"group:stick", "", "ropes:rope" },
|
{"group:stick", "", "ropes:rope" },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Mithril Fishing Pole
|
-- Mithril Fishing Pole
|
||||||
if minetest.get_modpath("moreore") ~= nil then
|
if minetest.get_modpath("moreores") ~= nil then
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "fishing:pole_perfect",
|
output = "fishing:pole_perfect",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "", "moreoress:mithril_ingot" },
|
{"", "", "moreores:mithril_ingot" },
|
||||||
{"", "moreoress:mithril_ingot", "mobs:spider_cobweb" },
|
{"", "moreores:mithril_ingot", "mobs:spider_cobweb" },
|
||||||
{"moreoress:mithril_ingot", "", "mobs:spider_cobweb" },
|
{"moreores:mithril_ingot", "", "mobs:spider_cobweb" },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user