mirror of
https://github.com/liyunfan1223/azerothcore-wotlk.git
synced 2026-08-08 07:48:02 +00:00
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.
This commit is contained in:
@@ -9119,7 +9119,7 @@ void ObjectMgr::LoadBroadcastTextLocales()
|
|||||||
BroadcastTextContainer::iterator bct = _broadcastTextStore.find(id);
|
BroadcastTextContainer::iterator bct = _broadcastTextStore.find(id);
|
||||||
if (bct == _broadcastTextStore.end())
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user