diff options
author | Shauren <shauren.trinity@gmail.com> | 2012-03-24 18:01:39 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2012-03-24 18:01:39 +0100 |
commit | a306c00d43fd173fcd9448636a06782a324b7513 (patch) | |
tree | d80b413871af1c084411e88c5f68e811f1670270 | |
parent | 64701c51dc5232f538bbc2b4687b4ae2be9d904f (diff) |
Core/LFGMgr: Added missing changes from previous commit
-rwxr-xr-x | src/server/game/DungeonFinding/LFGMgr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/game/DungeonFinding/LFGMgr.cpp b/src/server/game/DungeonFinding/LFGMgr.cpp index e6039880b63..815861ff96a 100755 --- a/src/server/game/DungeonFinding/LFGMgr.cpp +++ b/src/server/game/DungeonFinding/LFGMgr.cpp @@ -38,7 +38,8 @@ m_NumWaitTimeAvg(0), m_NumWaitTimeTank(0), m_NumWaitTimeHealer(0), m_NumWaitTime m_update = sWorld->getBoolConfig(CONFIG_DUNGEON_FINDER_ENABLE); if (m_update) { - new LFGScripts(); + new LFGPlayerScript(); + new LFGGroupScript(); // Initialize dungeon cache for (uint32 i = 0; i < sLFGDungeonStore.GetNumRows(); ++i) |