diff options
-rw-r--r-- | server/main.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/main.lua b/server/main.lua index 513c276b..ec1ccab0 100644 --- a/server/main.lua +++ b/server/main.lua @@ -1,7 +1,7 @@ local currentPath = debug.getinfo(1, 'S').source:sub(2) local rootPath = currentPath:gsub('[/\\][^/\\]-$', '') -package.cpath = rootPath .. '/bin/?.dll' - .. ';' .. rootPath .. '/bin/?.so' +package.cpath = rootPath .. '/bin/?.so' + .. ';' .. rootPath .. '/bin/?.dll' package.path = rootPath .. '/src/?.lua' .. ';' .. rootPath .. '/src/?/init.lua' |