diff options
Diffstat (limited to 'src/server.cpp')
-rw-r--r-- | src/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.cpp b/src/server.cpp index e345d8811..19138e52e 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -978,7 +978,7 @@ Server::Server( // Load and run builtin.lua infostream<<"Server: Loading builtin Lua stuff from \""<<builtinpath <<"\""<<std::endl; - bool success = script_load(m_lua, builtinpath.c_str()); + bool success = scriptapi_loadmod(m_lua, builtinpath, "__builtin"); if(!success){ errorstream<<"Server: Failed to load and run " <<builtinpath<<std::endl; |