forked from VoxeLibre/VoxeLibre
Don't starve player to death if hungry
This commit is contained in:
parent
f7031e8b6f
commit
44ea113972
|
@ -232,7 +232,7 @@ minetest.register_globalstep(function(dtime)
|
|||
mcl_hunger.update_exhaustion_hud(player, mcl_hunger.get_exhaustion(player))
|
||||
elseif h == 0 then
|
||||
-- Damage hungry player down to 1 HP
|
||||
if hp-1 >= 0 then
|
||||
if hp-1 > 0 then
|
||||
player:set_hp(hp-1)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue