fixed Soups

This commit is contained in:
hawkril 2014-03-11 12:23:56 +01:00
parent ad571992c3
commit 2f6042c189
2 changed files with 6 additions and 2 deletions

View File

@ -454,13 +454,13 @@ local soups = {"tomato","chicken"}
for i=1, #soups do
local flav = soups[i]
minetest.register_craftitem("food:soup_"..flav,{
description = flav.." Soup",
description = S(flav.." Soup"),
inventory_image = "food_soup_"..flav..".png",
on_use = food.item_eat(4),
groups = {food=3}
})
minetest.register_craftitem("food:soup_"..flav.."_raw",{
description = "Uncooked ".. flav.." Soup",
description = S("Uncooked ".. flav.." Soup"),
inventory_image = "food_soup_"..flav.."_raw.png",
})

View File

@ -39,3 +39,7 @@ Cake Mix = Backmischung
Chocolate Cake Mix = Backmischung fuer Schokoladenkuchen
Carrot Cake Mix = Backmischung fuer Karottenkuchen
Cheese Cake Mix = Backmischung fuer Kaesekuchen
chicken Soup = Huehnersuppe
tomato Soup = Tomatensuppe
Uncooked tomato Soup = Ungekochte Huehnersuppe
Uncooked chicken Soup = Ungekochte Tomatensuppe