Skip to content

Commit 76ebb55

Browse files
committed
fix tiebreaker check
1 parent ad71336 commit 76ebb55

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/game/client/tf/vgui/tf_match_summary.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ void CTFMatchSummary::UpdateMatchTimeRemaining()
10541054

10551055
int iTimeLeft = ( TFGameRules() && TFGameRules()->GetTimeLeft() > 0 ) ? TFGameRules()->GetTimeLeft() : 0;
10561056

1057-
const bool bTieBreaker = iTimeLeft == 0 && ( TFGameRules()->GetSeriesPoints( TFGameRules()->GetGCTeamForGameTeam( TF_TEAM_RED ) ) == TFGameRules()->GetSeriesPoints( TFGameRules()->GetGCTeamForGameTeam( TF_TEAM_BLU ) ) );
1057+
const bool bTieBreaker = iTimeLeft == 0 && ( TFGameRules()->GetSeriesPoints( TFGameRules()->GetGCTeamForGameTeam( TF_TEAM_RED ) ) == TFGameRules()->GetSeriesPoints( TFGameRules()->GetGCTeamForGameTeam( TF_TEAM_BLUE ) ) );
10581058

10591059
m_pMatchSeriesLabel->SetVisible( true );
10601060
m_pMatchNextSeriesLabel->SetVisible( true );

0 commit comments

Comments
 (0)