Add workaround for bad initial breath value

This commit is contained in:
Wuzzy 2015-02-12 22:15:19 +01:00
parent 05b9c3b882
commit 4ebc24f2ed
1 changed files with 3 additions and 3 deletions

View File

@ -293,13 +293,13 @@ end
local function update_hud(player)
if minetest.setting_getbool("enable_damage") then
--air
local air = player:get_breath()
local breath = player:get_breath()
if air == 11 then
if breath == 11 then
hb.hide_hudbar(player, "breath")
else
hb.unhide_hudbar(player, "breath")
hb.change_hudbar(player, "breath", air)
hb.change_hudbar(player, "breath", math.min(breath, 10))
end
--health