hud.conf → hudbars.conf

This commit is contained in:
Wuzzy 2015-02-09 23:42:56 +01:00
parent 041e76692b
commit 652da11a1f
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ the number.
Furthermore, it enables other mods to add their own custom bars to the HUD, this mod will place them accordingly. Furthermore, it enables other mods to add their own custom bars to the HUD, this mod will place them accordingly.
You can create a “hud.conf” file to customize the positions of the health and breath bars. Take a look at “hud.conf.example” to get more infos. You can create a “hudbars.conf” file to customize the positions of the health and breath bars. Take a look at “hudbars.conf.example” to get more infos.
IMPORTANT: IMPORTANT:

View File

@ -218,9 +218,9 @@ end
--load custom settings --load custom settings
local set = io.open(minetest.get_modpath("hudbars").."/hud.conf", "r") local set = io.open(minetest.get_modpath("hudbars").."/hudbars.conf", "r")
if set then if set then
dofile(minetest.get_modpath("hudbars").."/hud.conf") dofile(minetest.get_modpath("hudbars").."/hudbars.conf")
set:close() set:close()
end end