Re-fix health icon showing in Spectator mode on player re-join.

This commit is contained in:
MysticTempest 2022-11-06 04:53:36 -06:00
parent 18a63e2b74
commit c6951a6229
1 changed files with 6 additions and 1 deletions

View File

@ -24,7 +24,12 @@ if file ~= nil then
end
local function potions_set_hudbar(player)
if hardcore_world then
local meta = player:get_meta()
if hardcore_world and meta:get_int("dead") == 1 then
hb.change_hudbar(player, "health", nil, nil, "blank.png", nil, "hudbars_bar_health.png")
elseif hardcore_world then
if EF.poisoned[player] and EF.regenerating[player] then
hb.change_hudbar(player, "health", nil, nil, "hbhunger_icon_regen_poison_hardcore.png", nil, "hudbars_bar_health.png")