diff options
-rw-r--r-- | src/game/g_team.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/g_team.c b/src/game/g_team.c index 4b0af115..6f407a3f 100644 --- a/src/game/g_team.c +++ b/src/game/g_team.c @@ -436,10 +436,10 @@ void CheckTeamStatus( void ) } // Warn on imbalanced teams - if( g_teamImbalanceWarnings.integer && !level.intermissiontime && + if( g_teamImbalanceWarnings.integer && !level.intermissiontime && ( level.time - level.lastTeamImbalancedTime > - ( g_teamImbalanceWarnings.integer * 1000 ) ) && - level.numTeamImbalanceWarnings < 3 ) + ( g_teamImbalanceWarnings.integer * 1000 ) ) && + level.numTeamImbalanceWarnings < 3 && !level.restarted ) { level.lastTeamImbalancedTime = level.time; if( level.numAlienSpawns > 0 && |