Forgot a semicolon in an important spot.

This commit is contained in:
KimLS 2013-06-24 13:00:50 -07:00
parent 342a4c1b17
commit ffe6494147

View File

@ -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");