added food_berry group

This commit is contained in:
TenPlus1 2018-08-12 15:10:26 +01:00
parent 1b8b6cb286
commit eb6fa03f0d

View File

@ -6,7 +6,7 @@ minetest.register_craftitem("ethereal:strawberry", {
description = S("Strawberry"),
inventory_image = "strawberry.png",
wield_image = "strawberry.png",
groups = {food_strawberry = 1, flammable = 2},
groups = {food_strawberry = 1, food_berry = 1, flammable = 2},
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing, "ethereal:strawberry_1")
end,