diff options
author | Kinzcool <kinzzcool@hotmail.com> | 2014-11-11 15:35:41 -0500 |
---|---|---|
committer | Kinzcool <kinzzcool@hotmail.com> | 2014-11-11 15:35:41 -0500 |
commit | ac53077dff6937b38463938175299e3beac5c20e (patch) | |
tree | 3099c97fd8487373bc7cca7db4ba273d460838cd /src/server/worldserver/Main.cpp | |
parent | 7315333141c0bd1662c0a6a642c33dcc0e881d7e (diff) |
Conf: Changed hotfix database's name to actually match the initial name
Diffstat (limited to 'src/server/worldserver/Main.cpp')
-rw-r--r-- | src/server/worldserver/Main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/worldserver/Main.cpp b/src/server/worldserver/Main.cpp index c46a1dffeec..cabfa03c165 100644 --- a/src/server/worldserver/Main.cpp +++ b/src/server/worldserver/Main.cpp @@ -571,28 +571,28 @@ bool StartDB() return false; } - ///- Get hotfix database info from configuration file + ///- Get hotfixes database info from configuration file dbString = sConfigMgr->GetStringDefault("HotfixDatabaseInfo", ""); if (dbString.empty()) { - TC_LOG_ERROR("server.worldserver", "Hotfix database not specified in configuration file"); + TC_LOG_ERROR("server.worldserver", "Hotfixes database not specified in configuration file"); return false; } asyncThreads = uint8(sConfigMgr->GetIntDefault("HotfixDatabase.WorkerThreads", 1)); if (asyncThreads < 1 || asyncThreads > 32) { - TC_LOG_ERROR("server.worldserver", "Hotfix database: invalid number of worker threads specified. " + TC_LOG_ERROR("server.worldserver", "Hotfixes database: invalid number of worker threads specified. " "Please pick a value between 1 and 32."); return false; } synchThreads = uint8(sConfigMgr->GetIntDefault("HotfixDatabase.SynchThreads", 2)); - ///- Initialize the Hotfix database + ///- Initialize the hotfixes database if (!HotfixDatabase.Open(dbString, asyncThreads, synchThreads)) { - TC_LOG_ERROR("server.worldserver", "Cannot connect to Hotfix database %s", dbString.c_str()); + TC_LOG_ERROR("server.worldserver", "Cannot connect to the hotfix database %s", dbString.c_str()); return false; } |