summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cocoa.lua2
-rw-r--r--coffee.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/cocoa.lua b/cocoa.lua
index c387c3d..254e435 100644
--- a/cocoa.lua
+++ b/cocoa.lua
@@ -59,7 +59,7 @@ end
minetest.register_craftitem("farming:cocoa_beans", {
description = S("Cocoa Beans"),
inventory_image = "farming_cocoa_beans.png",
- groups = {food_cocoa_beans = 1, flammable = 2},
+ groups = {food_cocoa = 1, flammable = 2},
on_place = function(itemstack, placer, pointed_thing)
return place_cocoa(itemstack, placer, pointed_thing, "farming:cocoa_1")
end,
diff --git a/coffee.lua b/coffee.lua
index 917fee9..dc4acb3 100644
--- a/coffee.lua
+++ b/coffee.lua
@@ -5,7 +5,7 @@ local S = farming.intllib
minetest.register_craftitem("farming:coffee_beans", {
description = S("Coffee Beans"),
inventory_image = "farming_coffee_beans.png",
- groups = {food_coffee_beans = 1, flammable = 2},
+ groups = {food_coffee = 1, flammable = 2},
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing, "farming:coffee_1")
end,