mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-14 16:03:45 +00:00
chore(Core/Global): Fix grouping of Worldserver initialization (#4130)
This commit is contained in:
@@ -387,7 +387,7 @@ void ObjectMgr::LoadCreatureLocales()
|
||||
AddLocaleString(Title, locale, data.Title);
|
||||
} while (result->NextRow());
|
||||
|
||||
sLog->outString(">> Loaded %lu Сreature Locale strings in %u ms", (unsigned long)_creatureLocaleStore.size(), GetMSTimeDiffToNow(oldMSTime));
|
||||
sLog->outString(">> Loaded %lu Creature Locale strings in %u ms", (unsigned long)_creatureLocaleStore.size(), GetMSTimeDiffToNow(oldMSTime));
|
||||
}
|
||||
|
||||
void ObjectMgr::LoadGossipMenuItemsLocales()
|
||||
@@ -591,6 +591,7 @@ void ObjectMgr::LoadCreatureTemplates()
|
||||
}
|
||||
|
||||
sLog->outString(">> Loaded %u creature definitions in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
|
||||
sLog->outString();
|
||||
}
|
||||
|
||||
void ObjectMgr::LoadCreatureTemplateAddons()
|
||||
@@ -1699,6 +1700,7 @@ void ObjectMgr::LoadTempSummons()
|
||||
} while (result->NextRow());
|
||||
|
||||
sLog->outString(">> Loaded %u temp summons in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
|
||||
sLog->outString();
|
||||
}
|
||||
|
||||
void ObjectMgr::LoadCreatures()
|
||||
@@ -3339,6 +3341,7 @@ void ObjectMgr::LoadPlayerInfo()
|
||||
} while (result->NextRow());
|
||||
|
||||
sLog->outString(">> Loaded %u player create definitions in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
|
||||
sLog->outString();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3472,6 +3475,7 @@ void ObjectMgr::LoadPlayerInfo()
|
||||
} while (result->NextRow());
|
||||
|
||||
sLog->outString(">> Loaded %u player create spells in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
|
||||
sLog->outString();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6981,6 +6985,7 @@ void ObjectMgr::LoadReputationRewardRate()
|
||||
} while (result->NextRow());
|
||||
|
||||
sLog->outString(">> Loaded %u reputation_reward_rate in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
|
||||
sLog->outString();
|
||||
}
|
||||
|
||||
void ObjectMgr::LoadReputationOnKill()
|
||||
@@ -8749,7 +8754,6 @@ void ObjectMgr::LoadBroadcastTexts()
|
||||
} while (result->NextRow());
|
||||
|
||||
sLog->outString(">> Loaded " SZFMTD " broadcast texts in %u ms", _broadcastTextStore.size(), GetMSTimeDiffToNow(oldMSTime));
|
||||
sLog->outString();
|
||||
}
|
||||
|
||||
void ObjectMgr::LoadBroadcastTextLocales()
|
||||
@@ -9209,6 +9213,7 @@ void ObjectMgr::LoadGameObjectQuestItems()
|
||||
} while (result->NextRow());
|
||||
|
||||
sLog->outString(">> Loaded %u gameobject quest items in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
|
||||
sLog->outString();
|
||||
}
|
||||
|
||||
void ObjectMgr::LoadCreatureQuestItems()
|
||||
@@ -9238,4 +9243,5 @@ void ObjectMgr::LoadCreatureQuestItems()
|
||||
} while (result->NextRow());
|
||||
|
||||
sLog->outString(">> Loaded %u creature quest items in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
|
||||
sLog->outString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user