mirror of
https://github.com/MinetestForFun/mff_hud.git
synced 2024-12-22 16:50:34 +01:00
Enable breathbar only when healthbar is visible
This commit is contained in:
parent
bbff05d22f
commit
f8dfc851ec
@ -1,2 +1 @@
|
||||
default
|
||||
|
||||
|
2
init.lua
2
init.lua
@ -5,7 +5,7 @@ local minimap_visible = minetest.setting_getbool("enable_minimap") or false
|
||||
minetest.register_on_joinplayer(function(player)
|
||||
player:hud_set_hotbar_itemcount(hotbar_size)
|
||||
|
||||
player:hud_set_flags({crosshair = true, hotbar = true, healthbar = health_visible, wielditem = true, breathbar = true, minimap = minimap_visible})
|
||||
player:hud_set_flags({crosshair = true, hotbar = true, healthbar = health_visible, wielditem = true, breathbar = health_visible, minimap = minimap_visible})
|
||||
player:hud_set_hotbar_image("hud_hotbar.png")
|
||||
player:hud_set_hotbar_selected_image("hud_hotbar_selected.png")
|
||||
end)
|
||||
|
Loading…
Reference in New Issue
Block a user