diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-12 18:23:45 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-03-12 18:23:45 +0000 |
commit | 14154cea54ab4eb40e878fc8fe1c2d79fa41b40e (patch) | |
tree | 8c973b05aa9f836a67aa20506ac3507267542fd2 /cocoa.lua | |
parent | e4ed12056d875b603c03e93aaf7e4489f606aa83 (diff) |
food items now crafted using food_ groups
Diffstat (limited to 'cocoa.lua')
-rw-r--r-- | cocoa.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -82,7 +82,7 @@ minetest.register_craftitem("farming:cookie", { minetest.register_craft( { output = "farming:cookie 8", recipe = { - { "farming:wheat", "farming:cocoa_beans", "farming:wheat" }, + {"group:food_wheat", "group:food_cocoa", "group:food_wheat" }, } }) @@ -96,7 +96,7 @@ minetest.register_craftitem("farming:chocolate_dark", { minetest.register_craft( { output = "farming:chocolate_dark", recipe = { - { "farming:cocoa_beans", "farming:cocoa_beans", "farming:cocoa_beans" }, + {"group:food_cocoa", "group:food_cocoa", "group:food_cocoa"}, } }) |