diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-08-12 15:09:44 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-08-12 15:09:44 +0100 |
commit | d7965c1784fd36706335dd46ac54688ade89cf5f (patch) | |
tree | 181d66ad657e185f1254f36cd53851f7145c44fc /crops/raspberry.lua | |
parent | 3dbc6bd14175e3a38147ccb94173f7ad744c59f1 (diff) |
add food_berry group
Diffstat (limited to 'crops/raspberry.lua')
-rw-r--r-- | crops/raspberry.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crops/raspberry.lua b/crops/raspberry.lua index 931d2ae..08dbd84 100644 --- a/crops/raspberry.lua +++ b/crops/raspberry.lua @@ -5,7 +5,7 @@ local S = farming.intllib minetest.register_craftitem("farming:raspberries", { description = S("Raspberries"), inventory_image = "farming_raspberries.png", - groups = {food_raspberries = 1, flammable = 2}, + groups = {food_raspberries = 1, food_berry = 1, flammable = 2}, on_place = function(itemstack, placer, pointed_thing) return farming.place_seed(itemstack, placer, pointed_thing, "farming:raspberry_1") end, |