diff options
author | Andrew Ward <anjayward@gmail.com> | 2012-09-21 13:31:45 +0200 |
---|---|---|
committer | Andrew Ward <anjayward@gmail.com> | 2012-09-21 13:31:45 +0200 |
commit | 96e74e825e8c397c7fa1f0c90805500748cd8c01 (patch) | |
tree | 49aace25014e3c73b3258b4979bee8310e6c9bcf /support.lua | |
parent | cf08ef6f115309091a24785e6033d8ae3953a423 (diff) |
Update support.lua
Fix bugs that stop food working when farming is not installed
Diffstat (limited to 'support.lua')
-rw-r--r-- | support.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support.lua b/support.lua index d78f3cf..21e7b73 100644 --- a/support.lua +++ b/support.lua @@ -40,7 +40,7 @@ minetest.register_craftitem("food:strawberry", { end)
node_implement("farming","farming:carrot_item","food:carrot",function()
-minetest.register_craftitem("farming:carrot_item", {
+minetest.register_craftitem("food:carrot", {
description = "Carrot",
inventory_image = "farming_carrot.png",
on_use = minetest.item_eat(3),
|