diff options
author | Bogir[rus] <m-1@bk.ru> | 2022-01-24 20:55:33 +0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-24 12:55:33 -0300 |
commit | 1f93f0c9d62d40ddecdfc41a71c75d659dcce044 (patch) | |
tree | 9fcad1f7fc28298333cd3a1e175b7e46f9d8e95f /src/server/game/Globals/ObjectMgr.cpp | |
parent | 5fc76c8cc3b7989d38675c55d7465fbcbd7a6a53 (diff) |
fix(Core/Logs): fixed wrong decription of error during server startup
The Logger was pointing to the wrong table. Text is missing not in broadcast_text_locale, but in broadcast_text.
Diffstat (limited to 'src/server/game/Globals/ObjectMgr.cpp')
-rw-r--r-- | src/server/game/Globals/ObjectMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index 41b7e31cd6..796d297a33 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -9119,7 +9119,7 @@ void ObjectMgr::LoadBroadcastTextLocales() BroadcastTextContainer::iterator bct = _broadcastTextStore.find(id); if (bct == _broadcastTextStore.end()) { - LOG_ERROR("sql.sql", "BroadcastText (Id: %u) in table `broadcast_text_locale` does not exist. Skipped!", id); + LOG_ERROR("sql.sql", "BroadcastText (Id: %u) found in table `broadcast_text_locale` but does not exist in `broadcast_text`. Skipped!", id); continue; } |