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 /corn.lua | |
parent | e4ed12056d875b603c03e93aaf7e4489f606aa83 (diff) |
food items now crafted using food_ groups
Diffstat (limited to 'corn.lua')
-rw-r--r-- | corn.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -28,7 +28,7 @@ minetest.register_craft({ type = "cooking", cooktime = 10, output = "farming:corn_cob", - recipe = "farming:corn" + recipe = "group:food_corn" }) -- ethanol (thanks to JKMurray for this idea) @@ -52,8 +52,8 @@ minetest.register_node("farming:bottle_ethanol", { minetest.register_craft( { output = "farming:bottle_ethanol", recipe = { - { "vessels:glass_bottle", "farming:corn", "farming:corn"}, - { "farming:corn", "farming:corn", "farming:corn"}, + { "vessels:glass_bottle", "group:food_corn", "group:food_corn"}, + { "group:food_corn", "group:food_corn", "group:food_corn"}, } }) |