diff options
author | Spp <spp@jorge.gr> | 2010-05-31 20:25:21 +0200 |
---|---|---|
committer | Spp <spp@jorge.gr> | 2010-05-31 20:25:21 +0200 |
commit | 824b1303cedd1ce9fed7435982b08e96798f1e70 (patch) | |
tree | 54fd62d176156a2befe1e596b94833523137c0e7 /src/game/World.cpp | |
parent | 248782448c91aaa15a918d117a92f4ceaae0d77c (diff) |
Dungeon Finder:
- Add Rolechecks
- Can Join and Leave queue
* No Find group implementation, it just adds u to the queue.
* Still missing some join queue restrictions.
--HG--
branch : trunk
Diffstat (limited to 'src/game/World.cpp')
-rw-r--r-- | src/game/World.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index e3943b7dd05..04f0c46a7d5 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -1969,6 +1969,9 @@ void World::Update(uint32 diff) sOutdoorPvPMgr.Update(diff); RecordTimeDiff("UpdateOutdoorPvPMgr"); + sLFGMgr.Update(diff); + RecordTimeDiff("UpdateLFGMgr"); + // execute callbacks from sql queries that were queued recently UpdateResultQueue(); RecordTimeDiff("UpdateResultQueue"); |