diff options
author | Spp <spp@jorge.gr> | 2012-11-02 22:23:14 +0100 |
---|---|---|
committer | Spp <spp@jorge.gr> | 2012-11-02 22:26:10 +0100 |
commit | 58ec4e531914121144b6f852e3abf27cbb2f6fc4 (patch) | |
tree | eb1aab08bb3dc4d23482e074ce7b8fdf5857672d /src/server/game/DungeonFinding/LFGQueue.cpp | |
parent | 3ee840a9beb305ec6ed61acf87078206562e3626 (diff) |
Core/Guild: Code Refactor
- Send correct events when modifiying Ranks (Add, modify, delete)
- Store money/slots withdraw, not remaining slots. This will update remaining slots/money properly.
- Reset daily slots/money withdraw for all members at same time, configurable
- Better debug messages
Diffstat (limited to 'src/server/game/DungeonFinding/LFGQueue.cpp')
-rw-r--r-- | src/server/game/DungeonFinding/LFGQueue.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/server/game/DungeonFinding/LFGQueue.cpp b/src/server/game/DungeonFinding/LFGQueue.cpp index 8b69b537102..cf600b0645f 100644 --- a/src/server/game/DungeonFinding/LFGQueue.cpp +++ b/src/server/game/DungeonFinding/LFGQueue.cpp @@ -472,8 +472,6 @@ LfgCompatibility LFGQueue::CheckCompatibility(LfgGuidList check) if (numPlayers != MAXGROUPSIZE) { sLog->outDebug(LOG_FILTER_LFG, "LFGQueue::CheckCompatibility: (%s) Compatibles but not enough players(%u)", strGuids.c_str(), numPlayers); - LfgQueueDataContainer::iterator itQueue = QueueDataStore.find(check.front()); - LfgCompatibilityData data(LFG_COMPATIBLES_WITH_LESS_PLAYERS); data.roles = proposalRoles; @@ -677,4 +675,4 @@ void LFGQueue::UpdateBestCompatibleInQueue(LfgQueueDataContainer::iterator itrQu else --queueData.dps; } -}
\ No newline at end of file +} |