diff options
-rw-r--r-- | src/game/World.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index 1c3200f8351..563ee500d5f 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -1521,6 +1521,10 @@ void World::SetInitialWorldSettings() sLog.outString( "Starting Map System" ); MapManager::Instance().Initialize(); + sLog.outString("Starting Game Event system..." ); + uint32 nextGameEvent = gameeventmgr.Initialize(); + m_timers[WUPDATE_EVENTS].SetInterval(nextGameEvent); //depend on next event + ///- Initialize Battlegrounds sLog.outString( "Starting BattleGround System" ); sBattleGroundMgr.CreateInitialBattleGrounds(); @@ -1546,10 +1550,6 @@ void World::SetInitialWorldSettings() sLog.outString("Starting objects Pooling system..." ); poolhandler.Initialize(); - sLog.outString("Starting Game Event system..." ); - uint32 nextGameEvent = gameeventmgr.Initialize(); - m_timers[WUPDATE_EVENTS].SetInterval(nextGameEvent); //depend on next event - sLog.outString("Initialize AuctionHouseBot..."); AuctionHouseBotInit(); |