From e7a59194779e127dd539d5fffc256dcd07b70f65 Mon Sep 17 00:00:00 2001 From: Koncord Date: Fri, 27 Oct 2017 20:58:02 +0800 Subject: [PATCH] [Server] Fix path to native libs --- apps/openmw-mp/Script/LuaState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/openmw-mp/Script/LuaState.cpp b/apps/openmw-mp/Script/LuaState.cpp index 0ba381dc5..cf8c81c86 100644 --- a/apps/openmw-mp/Script/LuaState.cpp +++ b/apps/openmw-mp/Script/LuaState.cpp @@ -498,7 +498,7 @@ void LuaState::loadMods(const std::string &modDir, std::vector *lis envServerDir = current_path(); addGlobalPackagePath(envServerDir.string() + "/lib/lua/?/init.lua;" + envServerDir.string() + "/lib/lua/?.lua"); - addGlobalCPath(envServerDir.string() + "lib/?" + libExt); + addGlobalCPath(envServerDir.string() + "/lib/?" + libExt); readConfig(envServerDir); vector::iterator> sortedPluginList;