diff options
author | megamage <none@none> | 2009-04-07 19:38:09 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-04-07 19:38:09 -0500 |
commit | f59c4debf6d413fefb7f55d422263fbb44772054 (patch) | |
tree | a65e607067e5caf81a2b10b0eaecbaa78d9cf062 /src/game/World.cpp | |
parent | 24dede78d339f348ab67d4e7235ed12d93802b69 (diff) |
[7622] Added creatureAI with related database tables. Author: AlexDereka
*Note: three tables are renamed.
--HG--
branch : trunk
Diffstat (limited to 'src/game/World.cpp')
-rw-r--r-- | src/game/World.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index d138c4c1bb4..4bf272a21c8 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -40,6 +40,7 @@ #include "AchievementMgr.h" #include "AuctionHouseMgr.h" #include "ObjectMgr.h" +#include "CreatureEventAIMgr.h" #include "SpellMgr.h" #include "Chat.h" #include "DBCStores.h" @@ -1447,6 +1448,15 @@ void World::SetInitialWorldSettings() sLog.outString( "Loading Scripts text locales..." ); // must be after Load*Scripts calls objmgr.LoadDbScriptStrings(); + sLog.outString( "Loading CreatureEventAI Texts..."); + CreatureEAI_Mgr.LoadCreatureEventAI_Texts(); + + sLog.outString( "Loading CreatureEventAI Summons..."); + CreatureEAI_Mgr.LoadCreatureEventAI_Summons(); + + sLog.outString( "Loading CreatureEventAI Scripts..."); + CreatureEAI_Mgr.LoadCreatureEventAI_Scripts(); + sLog.outString( "Initializing Scripts..." ); if(!LoadScriptingModule()) exit(1); |