diff options
Diffstat (limited to 'src/server/shared')
-rw-r--r-- | src/server/shared/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/server/shared/Configuration/Config.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/CMakeLists.txt b/src/server/shared/CMakeLists.txt index 1ad85acb601..ddc10ca4673 100644 --- a/src/server/shared/CMakeLists.txt +++ b/src/server/shared/CMakeLists.txt @@ -27,7 +27,7 @@ file(GLOB_RECURSE sources_Utilities Utilities/*.cpp Utilities/*.h) file(GLOB sources_localdir *.cpp *.h) # Manually set sources for Debugging directory as we don't want to include WheatyExceptionReport in shared project -# It needs to be included both in authserver and worldserver for the static global variable to be properly initialized +# It needs to be included both in bnetserver and worldserver for the static global variable to be properly initialized # and to handle crash logs on windows set(sources_Debugging Debugging/Errors.cpp Debugging/Errors.h) diff --git a/src/server/shared/Configuration/Config.h b/src/server/shared/Configuration/Config.h index ff0233b5669..c2e073c9c05 100644 --- a/src/server/shared/Configuration/Config.h +++ b/src/server/shared/Configuration/Config.h @@ -30,7 +30,7 @@ class ConfigMgr ~ConfigMgr() { } public: - /// Method used only for loading main configuration files (authserver.conf and worldserver.conf) + /// Method used only for loading main configuration files bool LoadInitial(std::string const& file, std::string& error); static ConfigMgr* instance() |