Show health and breath bars

This commit is contained in:
LeMagnesium 2015-10-08 19:15:34 +02:00
parent fec4bedfbe
commit cb64a13e16
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ local hotbar_size = minetest.setting_get("hotbar_size") or 16
minetest.register_on_joinplayer(function(player)
player:hud_set_hotbar_itemcount(hotbar_size)
player:hud_set_flags({crosshair = true, hotbar = true, healthbar = false, wielditem = true, breathbar = false})
player:hud_set_flags({crosshair = true, hotbar = true, healthbar = true, wielditem = true, breathbar = true})
player:hud_set_hotbar_image("hud_hotbar.png")
player:hud_set_hotbar_selected_image("hud_hotbar_selected.png")
end)