From d6050bee5187d0d456e9d95406fc74ba163ea3aa Mon Sep 17 00:00:00 2001 From: red-001 Date: Mon, 22 Jan 2018 07:34:49 +0000 Subject: [PATCH] [CSM] Don't Load the package library (#6944) Already removed by a latter step in CSM init so this just saves on pointless work. --- src/script/cpp_api/s_base.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/script/cpp_api/s_base.cpp b/src/script/cpp_api/s_base.cpp index 1decb836d..59107b3ff 100644 --- a/src/script/cpp_api/s_base.cpp +++ b/src/script/cpp_api/s_base.cpp @@ -139,7 +139,6 @@ void ScriptApiBase::clientOpenLibs(lua_State *L) { static const std::vector> m_libs = { { "", luaopen_base }, - { LUA_LOADLIBNAME, luaopen_package }, { LUA_TABLIBNAME, luaopen_table }, { LUA_OSLIBNAME, luaopen_os }, { LUA_STRLIBNAME, luaopen_string },