if mcl dont add bowl recipe

This commit is contained in:
tenplus1 2023-09-05 07:53:51 +01:00
parent f5c321c04d
commit b4005685fd
1 changed files with 10 additions and 7 deletions

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",