1
0
mirror of https://github.com/rubenwardy/food.git synced 2025-07-08 10:40:20 +02:00

Update support of farming redo and mobs redo

Add support of ethereal
This commit is contained in:
sys4-fr
2016-07-29 16:49:46 +02:00
parent 9eed044387
commit 93ea79653f
2 changed files with 17 additions and 2 deletions

View File

@ -95,9 +95,13 @@ food.module("pasta_bake", function()
end)
-- Register Soups
local chicken = "meat"
if minetest.get_modpath("mobs") and mobs.mod == "redo" then
chicken = "chicken"
end
local soups = {
{"tomato", "tomato"},
{"chicken", "meat"}
{"chicken", chicken}
}
for i=1, #soups do
local flav = soups[i]