diff options
| author | Spp- <spp@jorge.gr> | 2011-09-09 14:27:23 +0200 |
|---|---|---|
| committer | Spp- <spp@jorge.gr> | 2011-09-09 14:27:23 +0200 |
| commit | 45af1238cfad926bc23c3801df2e7fa05074d6da (patch) | |
| tree | 4bc0a11429fe0759eb1d3b6756e6c4fb239e681a /src/server/game/DungeonFinding/LFGMgr.cpp | |
| parent | c4c916542873d06e8d5fed2f50816e6744479a06 (diff) | |
Conditions/DisableMgr: converted from singleton to namespace with free functions.
Diffstat (limited to 'src/server/game/DungeonFinding/LFGMgr.cpp')
| -rwxr-xr-x | src/server/game/DungeonFinding/LFGMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/DungeonFinding/LFGMgr.cpp b/src/server/game/DungeonFinding/LFGMgr.cpp index c9752c6377b..348388b72a4 100755 --- a/src/server/game/DungeonFinding/LFGMgr.cpp +++ b/src/server/game/DungeonFinding/LFGMgr.cpp @@ -379,7 +379,7 @@ void LFGMgr::InitializeLockedDungeons(Player* plr) LfgLockStatusType locktype = LFG_LOCKSTATUS_OK; if (dungeon->expansion > expansion) locktype = LFG_LOCKSTATUS_INSUFFICIENT_EXPANSION; - else if (sDisableMgr->IsDisabledFor(DISABLE_TYPE_MAP, dungeon->map, plr)) + else if (DisableMgr::IsDisabledFor(DISABLE_TYPE_MAP, dungeon->map, plr)) locktype = LFG_LOCKSTATUS_RAID_LOCKED; else if (dungeon->difficulty > DUNGEON_DIFFICULTY_NORMAL && plr->GetBoundInstance(dungeon->map, Difficulty(dungeon->difficulty))) locktype = LFG_LOCKSTATUS_RAID_LOCKED; |
