food_basic : Update support of mobs_redo with mobs_animal. If mobs is loaded without mobs_animal then food:soup_chicken_raw cannot be crafted.

This commit is contained in:
sys4-fr 2016-11-25 21:33:59 +01:00
parent 2fcea7f29d
commit 80cf6b3799
2 changed files with 6 additions and 1 deletions

View File

@ -12,6 +12,7 @@ jkanimals?
jkfarming? jkfarming?
my_mobs? my_mobs?
mobs? mobs?
mobs_animal?
mobfcooking? mobfcooking?
mtfoods? mtfoods?
plantlib? plantlib?

View File

@ -82,5 +82,9 @@ else
end end
if minetest.get_modpath("mobs") and mobs.mod == "redo" then if minetest.get_modpath("mobs") and mobs.mod == "redo" then
food.support("chicken", "mobs:chicken_cooked") if minetest.get_modpath("mobs_animal") then
food.support("chicken", "mobs:chicken_cooked")
else
food.support("chicken", "mobs:meat")
end
end end