diff options
Diffstat (limited to 'src/game/World.cpp')
-rw-r--r-- | src/game/World.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index 6ab82fffed2..7d4be651077 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -62,6 +62,7 @@ #include "GMTicketMgr.h" #include "Util.h" #include "Language.h" +#include "CreatureGroups.h" INSTANTIATE_SINGLETON_1( World ); @@ -1257,7 +1258,10 @@ void World::SetInitialWorldSettings() sLog.outString( "Loading Waypoints..." ); WaypointMgr.Load(); - sLog.outString( "Loading GM tickets..."); + sLog.outString( "Loading Creature Formations..." ); + formation_mgr.LoadCreatureFormations(); + + sLog.outString( "Loading GM tickets..."); ticketmgr.LoadGMTickets(); ///- Handle outdated emails (delete/return) |