diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/configreader.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/configreader.h b/include/configreader.h index cabd74aff..1eef60780 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -216,11 +216,7 @@ class CoreExport ServerConfig /** Module path */ std::string Module; - ServerPaths() - : Config(INSPIRCD_CONFIG_PATH) - , Data(INSPIRCD_DATA_PATH) - , Log(INSPIRCD_LOG_PATH) - , Module(INSPIRCD_MODULE_PATH) { } + ServerPaths(ConfigTag* tag); std::string PrependConfig(const std::string& fn) const { return FileSystem::ExpandPath(Config, fn); } std::string PrependData(const std::string& fn) const { return FileSystem::ExpandPath(Data, fn); } |