Translated using Weblate (German)
[oweals/minetest.git] / builtin / game / statbars.lua
index 9e5699314af38162e6a229c9ef6a107ece0a4c81..61a8b90770a9b8d5e0512445f14d3e108c65ce24 100644 (file)
@@ -7,7 +7,7 @@ local health_bar_definition =
        number = 20,
        direction = 0,
        size = { x=24, y=24 },
-       offset = { x=(-10*24)-25, y=-(48+24+10)},
+       offset = { x=(-10*24)-25, y=-(48+24+16)},
 }
 
 local breath_bar_definition =
@@ -18,7 +18,7 @@ local breath_bar_definition =
        number = 20,
        direction = 0,
        size = { x=24, y=24 },
-       offset = {x=25,y=-(48+24+10)},
+       offset = {x=25,y=-(48+24+16)},
 }
 
 local hud_ids = {}
@@ -37,9 +37,13 @@ local function initialize_builtin_statbars(player)
 
        if (hud_ids[name] == nil) then
                hud_ids[name] = {}
+               -- flags are not transmitted to client on connect, we need to make sure
+               -- our current flags are transmitted by sending them actively
+               player:hud_set_flags(player:hud_get_flags())
        end
 
-       if player:hud_get_flags().healthbar then
+       if player:hud_get_flags().healthbar and
+                       core.is_yes(core.setting_get("enable_damage")) then
                if hud_ids[name].id_healthbar == nil then
                        health_bar_definition.number = player:get_hp()
                        hud_ids[name].id_healthbar  = player:hud_add(health_bar_definition)
@@ -52,7 +56,8 @@ local function initialize_builtin_statbars(player)
        end
 
        if (player:get_breath() < 11) then
-               if player:hud_get_flags().breathbar then
+               if player:hud_get_flags().breathbar and
+                       core.is_yes(core.setting_get("enable_damage")) then
                        if hud_ids[name].id_breathbar == nil then
                                hud_ids[name].id_breathbar = player:hud_add(breath_bar_definition)
                        end