summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2018-08-12 15:17:06 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2018-08-12 15:17:06 +0100
commit43b1a781792f168bb6898515e09223e65f370241 (patch)
tree7f5fedda5d3f8ee5b68d46b76fd59686d1388c0f
parentd7965c1784fd36706335dd46ac54688ade89cf5f (diff)
added singular and plural grouping to berries
-rw-r--r--crops/blueberry.lua2
-rw-r--r--crops/raspberry.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/crops/blueberry.lua b/crops/blueberry.lua
index 9581454..9a30387 100644
--- a/crops/blueberry.lua
+++ b/crops/blueberry.lua
@@ -5,7 +5,7 @@ local S = farming.intllib
minetest.register_craftitem("farming:blueberries", {
description = S("Blueberries"),
inventory_image = "farming_blueberries.png",
- groups = {food_blueberries = 1, food_berry = 1, flammable = 2},
+ groups = {food_blueberries = 1, food_blueberry = 1, food_berry = 1, flammable = 2},
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing, "farming:blueberry_1")
end,
diff --git a/crops/raspberry.lua b/crops/raspberry.lua
index 08dbd84..713ea2f 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, food_berry = 1, flammable = 2},
+ groups = {food_raspberries = 1, food_raspberry = 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,