diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-21 10:51:12 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-21 10:51:12 +0000 |
commit | 719e3b1d74e6b7bc7933b4645ff7d2cb426c9f0c (patch) | |
tree | 981f4b6a90e1ae99a68ef8daf168e82f873e2e76 /chili.lua | |
parent | 3dd1c5280ebb104822512ee32f52ffac971be9da (diff) |
Added Peas, Bowl, Pea Soup
Diffstat (limited to 'chili.lua')
-rw-r--r-- | chili.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ minetest.register_craftitem("farming:chili_pepper", { minetest.register_craftitem("farming:chili_bowl", { description = S("Bowl of Chili"), inventory_image = "farming_chili_bowl.png", - on_use = minetest.item_eat(8), + on_use = minetest.item_eat(8, "farming:bowl"), }) minetest.register_craft({ @@ -24,7 +24,7 @@ minetest.register_craft({ output = "farming:chili_bowl", recipe = { "group:food_chili_pepper", "group:food_barley", - "group:food_tomato", "group:food_beans" + "group:food_tomato", "group:food_beans", "group:food_bowl" } }) |