aboutsummaryrefslogtreecommitdiffstats
path: root/code/game/g_team.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/game/g_team.c')
-rw-r--r--code/game/g_team.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/code/game/g_team.c b/code/game/g_team.c
index fbdf586..877ac2a 100644
--- a/code/game/g_team.c
+++ b/code/game/g_team.c
@@ -47,8 +47,9 @@ void Team_InitGame( void ) {
switch( g_gametype.integer ) {
case GT_CTF:
- teamgame.redStatus = teamgame.blueStatus = -1; // Invalid to force update
+ teamgame.redStatus = -1; // Invalid to force update
Team_SetFlagStatus( TEAM_RED, FLAG_ATBASE );
+ teamgame.blueStatus = -1; // Invalid to force update
Team_SetFlagStatus( TEAM_BLUE, FLAG_ATBASE );
break;
#ifdef MISSIONPACK