diff options
author | Wuzzy <almikes@aol.com> | 2016-12-02 22:36:10 +0100 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-12-02 22:36:10 +0100 |
commit | 3c182884dcf4ec1a98ca05c16c247a62abbfe50f (patch) | |
tree | 409ca2a70af5f7719072c552fc3154491f337f07 | |
parent | 3d74745aec4d95d80090aa0730a7a1c1c4eab32f (diff) |
Fix breath and health not being updated anymore
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -496,7 +496,7 @@ end -- update built-in HUD bars local function update_hud(player) - if not player_exists() then return end + if not player_exists(player) then return end if minetest.setting_getbool("enable_damage") then if hb.settings.forceload_default_hudbars then hb.unhide_hudbar(player, "health") |