mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 02:46:33 +01:00
Core: It would help if we would actually load gameobject data before checking respawn links if we want to validate linked_respawn data properly
--HG-- branch : trunk
This commit is contained in:
@@ -1348,9 +1348,6 @@ void World::SetInitialWorldSettings()
|
||||
sLog->outString("Loading Creature Data...");
|
||||
sObjectMgr->LoadCreatures();
|
||||
|
||||
sLog->outString("Loading Creature Linked Respawn...");
|
||||
sObjectMgr->LoadLinkedRespawn(); // must be after LoadCreatures()
|
||||
|
||||
sLog->outString("Loading pet levelup spells...");
|
||||
sSpellMgr->LoadPetLevelupSpellMap();
|
||||
|
||||
@@ -1372,6 +1369,9 @@ void World::SetInitialWorldSettings()
|
||||
sLog->outString("Loading Gameobject Respawn Data..."); // must be after PackInstances()
|
||||
sObjectMgr->LoadGameobjectRespawnTimes();
|
||||
|
||||
sLog->outString("Loading Creature Linked Respawn...");
|
||||
sObjectMgr->LoadLinkedRespawn(); // must be after LoadCreatures(), LoadGameObjects()
|
||||
|
||||
sLog->outString("Loading Objects Pooling Data..."); // TODOLEAK: scope
|
||||
sPoolMgr->LoadFromDB();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user