summaryrefslogtreecommitdiff
path: root/coffee.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2018-03-12 17:35:48 +0000
committerTenPlus1 <kinsellaja@yahoo.com>2018-03-12 17:35:48 +0000
commite4ed12056d875b603c03e93aaf7e4489f606aa83 (patch)
tree2869c2ad19b0bd4032c6406a9c544cd1c12e95d3 /coffee.lua
parent77198100f3bfa57de2d616bee3d2dfd3a48c02a9 (diff)
removed _beans from coffee and cocoa
Diffstat (limited to 'coffee.lua')
-rw-r--r--coffee.lua2
1 files changed, 1 insertions, 1 deletions
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,