diff options
author | Xanthin <Xanthin@users.noreply.github.com> | 2014-03-09 20:15:17 +0100 |
---|---|---|
committer | Xanthin <Xanthin@users.noreply.github.com> | 2014-03-09 20:15:17 +0100 |
commit | ad571992c36688d0a62f98f4e3657d0782c3db77 (patch) | |
tree | 6e5a2109a23fb90f5cc3113191fb2b105684cdac /init.lua | |
parent | cbff898c508a6dd692f98c8d314ff7ce18ac23e0 (diff) |
delted S() for soup and juice
doesn't work so easy, need other method
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -450,11 +450,11 @@ minetest.register_craft({ }) -- Register Soups -local soups = {S("tomato"),S("chicken")} +local soups = {"tomato","chicken"} for i=1, #soups do local flav = soups[i] minetest.register_craftitem("food:soup_"..flav,{ - description = flav..S(" Soup"), + description = flav.." Soup", inventory_image = "food_soup_"..flav..".png", on_use = food.item_eat(4), groups = {food=3} @@ -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..S(" Juice"), + description = flav.." Juice", inventory_image = "food_"..flav.."_juice.png", on_use = minetest.item_eat(2), }) |