Remove FPS from being next to the version string
[oweals/minetest.git] / src / script / scripting_game.cpp
index fccd10722abf1a6cff293ec45ea31f3ce234eda4..e716bc979489bc357617ec2f2d8f4cce73ff95d8 100644 (file)
@@ -19,7 +19,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 #include "scripting_game.h"
 #include "server.h"
-#include "filesys.h"
 #include "log.h"
 #include "cpp_api/s_internal.h"
 #include "lua_api/l_base.h"
@@ -52,17 +51,9 @@ GameScripting::GameScripting(Server* server)
 
        //TODO add security
 
-       luaL_openlibs(getStack());
-
        SCRIPTAPI_PRECHECKHEADER
 
-       lua_pushstring(L, DIR_DELIM);
-       lua_setglobal(L, "DIR_DELIM");
-
-       // Create the main minetest table
-       lua_newtable(L);
-       lua_setglobal(L, "minetest");
-       lua_getglobal(L, "minetest");
+       lua_getglobal(L, "core");
        int top = lua_gettop(L);
 
        lua_newtable(L);