diff --git a/zone/lua_parser.cpp b/zone/lua_parser.cpp index 23d8f0aba..27cf68d90 100644 --- a/zone/lua_parser.cpp +++ b/zone/lua_parser.cpp @@ -778,7 +778,7 @@ void LuaParser::ReloadQuests() { lua_getglobal(L, "package"); lua_getfield(L, -1, "path"); std::string module_path = lua_tostring(L,-1); - module_path += "./lua_modules/?.lua"; + module_path += ";./lua_modules/?.lua"; lua_pop(L, 1); lua_pushstring(L, module_path.c_str()); lua_setfield(L, -2, "path");