]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - builtin/init.lua
Remove unused variable WARN_INIT
[dragonfireclient.git] / builtin / init.lua
index 7a9b5c42718002d7cc75b6d31712ce7b5b2bc1a2..8691360169379bc82ede6e9892a41442fea6a3b8 100644 (file)
@@ -56,8 +56,10 @@ elseif INIT == "mainmenu" then
        if not custom_loaded then
                dofile(core.get_mainmenu_path() .. DIR_DELIM .. "init.lua")
        end
-elseif INIT == "async" then
-       dofile(asyncpath .. "init.lua")
+elseif INIT == "async"  then
+       dofile(asyncpath .. "mainmenu.lua")
+elseif INIT == "async_game" then
+       dofile(asyncpath .. "game.lua")
 elseif INIT == "client" then
        dofile(clientpath .. "init.lua")
 else