mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
fix crash when starting a TA CTF game with shared libs (#2367)
This commit is contained in:
parent
4bee7b4134
commit
18fc0fb5f5
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue