1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2024-09-20 19:50:24 +02:00

if mcl dont add bowl recipe

This commit is contained in:
tenplus1 2023-09-05 07:53:51 +01:00
parent f5c321c04d
commit b4005685fd

View File

@ -10,13 +10,16 @@ minetest.register_craftitem("farming:bowl", {
groups = {food_bowl = 1, flammable = 2}
})
minetest.register_craft({
output = "farming:bowl 4",
recipe = {
{"group:wood", "", "group:wood"},
{"", "group:wood", ""}
}
})
if not farming.mcl then
minetest.register_craft({
output = "farming:bowl 4",
recipe = {
{"group:wood", "", "group:wood"},
{"", "group:wood", ""}
}
})
end
minetest.register_craft({
type = "fuel",