From 8a9d81303c8cf0188cd2f421ba0a8c4b9b64008e Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 4 Feb 2015 01:14:47 +0100 Subject: [PATCH] =?UTF-8?q?Change=20mod=20name=20to=20=E2=80=9Chudbars?= =?UTF-8?q?=E2=80=9D=20in=20source=20code=20...=20at=20least=20partially?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 1dc9809..09c307f 100644 --- a/init.lua +++ b/init.lua @@ -68,9 +68,9 @@ if minetest.get_modpath("3d_armor") ~= nil then end --load custom settings -local set = io.open(minetest.get_modpath("hud").."/hud.conf", "r") +local set = io.open(minetest.get_modpath("hudbars").."/hud.conf", "r") if set then - dofile(minetest.get_modpath("hud").."/hud.conf") + dofile(minetest.get_modpath("hudbars").."/hud.conf") set:close() else if not HUD_ENABLE_HUNGER then @@ -176,8 +176,8 @@ function hud.set_armor() end -if HUD_ENABLE_HUNGER then dofile(minetest.get_modpath("hud").."/hunger.lua") end -if HUD_SHOW_ARMOR then dofile(minetest.get_modpath("hud").."/armor.lua") end +if HUD_ENABLE_HUNGER then dofile(minetest.get_modpath("hudbars").."/hunger.lua") end +if HUD_SHOW_ARMOR then dofile(minetest.get_modpath("hudbars").."/armor.lua") end -- update hud elemtens if value has changed local function update_hud(player)