aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/server/game/World/World.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp
index 91796de0a44..9e799513955 100755
--- a/src/server/game/World/World.cpp
+++ b/src/server/game/World/World.cpp
@@ -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();