fix crash when starting a TA CTF game with shared libs (#2367)

This commit is contained in:
Ludwig Nussel 2005-09-17 14:20:22 +00:00
parent 4bee7b4134
commit 18fc0fb5f5
1 changed files with 2 additions and 1 deletions

View File

@ -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