Update init.lua

This commit is contained in:
Xanthin 2014-03-11 12:46:06 +01:00
parent 2f6042c189
commit 1c4cbd162c
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ local juices = {"apple","cactus"}
for i=1, #juices do
local flav = juices[i]
minetest.register_craftitem("food:"..flav.."_juice", {
description = flav.." Juice",
description = S(flav.." Juice"),
inventory_image = "food_"..flav.."_juice.png",
on_use = minetest.item_eat(2),
})