From 2dd0b28fb2ea22a0c789abfdfe1932412ca44d69 Mon Sep 17 00:00:00 2001 From: megamage Date: Tue, 23 Dec 2008 12:58:52 -0600 Subject: [PATCH] *Update bg and arena code. --HG-- branch : trunk --- src/game/BattleGroundMgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/BattleGroundMgr.cpp b/src/game/BattleGroundMgr.cpp index f830d9366b2..5f8da1bb4b2 100644 --- a/src/game/BattleGroundMgr.cpp +++ b/src/game/BattleGroundMgr.cpp @@ -89,7 +89,7 @@ void BattleGroundQueue::EligibleGroups::Init(BattleGroundQueue::QueuedGroupsList (*itr)->Players.size() <= MaxPlayers && // the group must fit in the bg ( !excludeTeam || (*itr)->ArenaTeamId != excludeTeam ) && // if excludeTeam is specified, leave out those arena team ids ( !IsRated || (*itr)->Players.size() == MaxPlayers ) && // if rated, then pass only if the player count is exact NEEDS TESTING! (but now this should never happen) - ( DisregardTime && (*itr)->JoinTime <= DisregardTime // pass if disregard time is greater than join time + ( !DisregardTime || (*itr)->JoinTime <= DisregardTime // pass if disregard time is greater than join time || (*itr)->ArenaTeamRating == 0 // pass if no rating info || ( (*itr)->ArenaTeamRating >= MinRating // pass if matches the rating range && (*itr)->ArenaTeamRating <= MaxRating ) ) )