diff options
| author | Meji <alvaro.megias@outlook.com> | 2023-04-09 00:59:29 +0200 |
|---|---|---|
| committer | Meji <alvaro.megias@outlook.com> | 2023-04-09 00:59:29 +0200 |
| commit | cc5fa9107f372cf84741c0c0672509e5ef5d8952 (patch) | |
| tree | edf7fd42d432570666c9c132e92832e042093657 /src | |
| parent | 8b7fbde1a0dd63ba0a09f69106cf403ae454f525 (diff) | |
Core/Misc: Fix typo introduced in 36044a9470e9c39a71916e908ab6cf4f95677793
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/game/Globals/ObjectMgr.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index b86569af305..65d00b51a50 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -526,14 +526,14 @@ void ObjectMgr::LoadCreatureTemplateGossip() CreatureTemplateContainer::iterator itr = _creatureTemplateStore.find(creatureID); if (itr == _creatureTemplateStore.end()) { - TC_LOG_ERROR("sql.sql", "creature_template_gossip has gossip definitions for creature %u but this creature doesn't exist", creatureID); + TC_LOG_ERROR("sql.sql", "creature_template_gossip has gossip definitions for creature {} but this creature doesn't exist", creatureID); continue; } GossipMenusMapBounds menuBounds = sObjectMgr->GetGossipMenusMapBounds(menuID); if (menuBounds.first == menuBounds.second) { - TC_LOG_ERROR("sql.sql", "creature_template_gossip has gossip definitions for menu id %u but this menu doesn't exist", menuID); + TC_LOG_ERROR("sql.sql", "creature_template_gossip has gossip definitions for menu id {} but this menu doesn't exist", menuID); continue; } @@ -544,7 +544,7 @@ void ObjectMgr::LoadCreatureTemplateGossip() } while (result->NextRow()); - TC_LOG_INFO("server.loading", ">> Loaded %u creature template gossip menus in %u ms", count, GetMSTimeDiffToNow(oldMSTime)); + TC_LOG_INFO("server.loading", ">> Loaded {} creature template gossip menus in {} ms", count, GetMSTimeDiffToNow(oldMSTime)); } void ObjectMgr::LoadCreatureTemplateResistances() |
