[Hotfix] Fix lua mod load path

This commit is contained in:
Akkadius 2022-09-29 12:06:01 -05:00
parent b20d0b84f6
commit ee167bbc64

View File

@ -1010,7 +1010,7 @@ void LuaParser::ReloadQuests() {
}
}
LoadScript(fmt::format("{}{}", path.GetLuaModsPath(), std::string(file_name)), file_name);
LoadScript(fmt::format("{}/{}", path.GetLuaModsPath(), std::string(file_name)), file_name);
mods_.emplace_back(L, this, file_name);
}