aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Pérez-Cerezo <gabriel@gpcf.eu>2017-11-18 22:50:35 +0100
committerGabriel Pérez-Cerezo <gabriel@gpcf.eu>2017-11-18 22:50:35 +0100
commit050b4228a0f8a4c7ebe884e623c24a2d8d7b5fdb (patch)
tree1f285af307d891127bc6d136f835656d983fbc20
parent93190e95eeaacde335dec41518d34bd5376697fb (diff)
downloadfreezer-050b4228a0f8a4c7ebe884e623c24a2d8d7b5fdb.tar.gz
freezer-050b4228a0f8a4c7ebe884e623c24a2d8d7b5fdb.tar.bz2
freezer-050b4228a0f8a4c7ebe884e623c24a2d8d7b5fdb.zip
Fixed syntax error
-rw-r--r--juices.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/juices.lua b/juices.lua
index 63e34a3..5fd0145 100644
--- a/juices.lua
+++ b/juices.lua
@@ -112,7 +112,7 @@ for juice_name, def in pairs(juice_table) do
description = def.proper_name .. " popsicle",
inventory_image = juice_name .. "_popsicle.png",
wield_image = juice_name .. "_popsicle.png",
- groups = { popsicle = 1, not_in_creative_inventory = 1 }
+ groups = { popsicle = 1, not_in_creative_inventory = 1 },
on_use = minetest.item_eat(def.orig_nutritional_value, "default:stick"),
})