Merge pull request #22 from asanetargoss/master

Fix typo when checking if hbhunger is installed
This commit is contained in:
rubenwardy 2015-06-28 22:46:40 +01:00
commit f634d57d4a
1 changed files with 3 additions and 3 deletions

View File

@ -106,9 +106,9 @@ function food.item_eat(amt)
return diet.item_eat(amt)
elseif minetest.get_modpath("hud") and hud and hud.item_eat then
return hud.item_eat(amt)
elseif minetest.get_modpath("hphunger") then
if hphunger then
return hphunger.item_eat(amt)
elseif minetest.get_modpath("hbhunger") then
if hbhunger then
return hbhunger.item_eat(amt)
else
return hunger.item_eat(amt)
end