]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - builtin/init.lua
Window size: use 1024x600 to avoid a smaller UI
[dragonfireclient.git] / builtin / init.lua
index b34ad14a0d647ca78c7456b0d2dfee4a928e52c4..e94f3213a41fe679dc50c8a3deaa9482d1349106 100644 (file)
@@ -25,8 +25,9 @@ os.setlocale("C", "numeric")
 minetest = core
 
 -- Load other files
-local scriptdir = core.get_builtin_path() .. DIR_DELIM
+local scriptdir = core.get_builtin_path()
 local gamepath = scriptdir .. "game" .. DIR_DELIM
+local clientpath = scriptdir .. "client" .. DIR_DELIM
 local commonpath = scriptdir .. "common" .. DIR_DELIM
 local asyncpath = scriptdir .. "async" .. DIR_DELIM
 
@@ -37,7 +38,7 @@ dofile(commonpath .. "misc_helpers.lua")
 if INIT == "game" then
        dofile(gamepath .. "init.lua")
 elseif INIT == "mainmenu" then
-       local mm_script = core.setting_get("main_menu_script")
+       local mm_script = core.settings:get("main_menu_script")
        if mm_script and mm_script ~= "" then
                dofile(mm_script)
        else
@@ -45,6 +46,9 @@ elseif INIT == "mainmenu" then
        end
 elseif INIT == "async" then
        dofile(asyncpath .. "init.lua")
+elseif INIT == "client" then
+       os.setlocale = nil
+       dofile(clientpath .. "init.lua")
 else
        error(("Unrecognized builtin initialization type %s!"):format(tostring(INIT)))
 end