From ee167bbc6472f4cf0970616d6e7a606eff90f037 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Thu, 29 Sep 2022 12:06:01 -0500 Subject: [PATCH] [Hotfix] Fix lua mod load path --- zone/lua_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/lua_parser.cpp b/zone/lua_parser.cpp index b29150712..965eae44f 100644 --- a/zone/lua_parser.cpp +++ b/zone/lua_parser.cpp @@ -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); }