mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-06 02:20:24 +01:00
78734c70ce
- Solves part of #94
10 lines
361 B
Lua
Executable File
10 lines
361 B
Lua
Executable File
-- Miscellaneous legacies from our old mod, HUD by BlockMen
|
|
--
|
|
|
|
minetest.register_on_joinplayer(function(player)
|
|
player:hud_set_flags({crosshair = true, hotbar = true, healthbar = false, wielditem = true, breathbar = false})
|
|
|
|
player:hud_set_hotbar_image("hudbars_hotbar.png")
|
|
player:hud_set_hotbar_selected_image("hudbars_hotbar_selected.png")
|
|
end)
|