diff options
author | Machiavelli <machiavelli.trinity@gmail.com> | 2011-03-06 16:28:31 +0100 |
---|---|---|
committer | Machiavelli <machiavelli.trinity@gmail.com> | 2011-03-06 16:28:31 +0100 |
commit | 0f91728fdd0d4320568a2c96a6434b46f5fe8b21 (patch) | |
tree | 52516e0b55cafe20879fd9806cda40afa299ac87 /src | |
parent | 10c02690b607f1c1c459a8c0b4fe594bb45fe219 (diff) |
Core/ObjectMgr: Load npc spellclick data after quests.
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/World/World.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp index aded5e9e22e..94bc4b4dc54 100755 --- a/src/server/game/World/World.cpp +++ b/src/server/game/World/World.cpp @@ -1363,12 +1363,6 @@ void World::SetInitialWorldSettings() sLog->outString("Loading Creature Template Addon Data..."); sObjectMgr->LoadCreatureAddons(); // must be after LoadCreatureTemplates() and LoadCreatures() - sLog->outString("Loading UNIT_NPC_FLAG_SPELLCLICK Data..."); - sObjectMgr->LoadNPCSpellClickSpells(); - - sLog->outString("Loading Vehicle Accessories..."); - sObjectMgr->LoadVehicleAccessories(); // must be after LoadCreatureTemplates() and LoadNPCSpellClickSpells() - sLog->outString("Loading Creature Respawn Data..."); // must be after PackInstances() sObjectMgr->LoadCreatureRespawnTimes(); @@ -1405,6 +1399,12 @@ void World::SetInitialWorldSettings() sLog->outString("Loading Game Event Data..."); // must be after loading pools fully sGameEventMgr->LoadFromDB(); // TODOLEAK: add scopes + sLog->outString("Loading UNIT_NPC_FLAG_SPELLCLICK Data..."); + sObjectMgr->LoadNPCSpellClickSpells(); + + sLog->outString("Loading Vehicle Accessories..."); + sObjectMgr->LoadVehicleAccessories(); // must be after LoadCreatureTemplates() and LoadNPCSpellClickSpells() + sLog->outString("Loading Dungeon boss data..."); sObjectMgr->LoadInstanceEncounters(); |