diff options
Diffstat (limited to 'zenserver/config.cpp')
| -rw-r--r-- | zenserver/config.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/zenserver/config.cpp b/zenserver/config.cpp index 8fe9f72f2..06b355b7a 100644 --- a/zenserver/config.cpp +++ b/zenserver/config.cpp @@ -235,8 +235,6 @@ ParseServiceConfig(const std::filesystem::path& DataRoot, ZenServiceConfig& Serv throw std::exception("fatal zen global config script ({}) failure: {}"_format(ConfigScript, e.what()).c_str()); } - ServiceConfig.LegacyCacheEnabled = lua["legacycache"]["enable"].get_or(ServiceConfig.LegacyCacheEnabled); - const std::string path = lua["legacycache"]["readpath"].get_or(std::string()); ServiceConfig.MeshEnabled = lua["mesh"]["enable"].get_or(ServiceConfig.MeshEnabled); auto UpdateStringValueFromConfig = [](const sol::table& Table, std::string_view Key, std::string& OutValue) { |