diff options
Diffstat (limited to 'code/q3_ui')
-rw-r--r-- | code/q3_ui/ui_teamorders.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/code/q3_ui/ui_teamorders.c b/code/q3_ui/ui_teamorders.c index 7cf85f4..d116e01 100644 --- a/code/q3_ui/ui_teamorders.c +++ b/code/q3_ui/ui_teamorders.c @@ -295,7 +295,7 @@ static void UI_TeamOrdersMenu_BuildBotList( void ) { int numPlayers; int isBot; int n; - char playerTeam; + char playerTeam = '3'; char botTeam; char info[MAX_INFO_STRING]; @@ -315,8 +315,6 @@ static void UI_TeamOrdersMenu_BuildBotList( void ) { for( n = 0; n < numPlayers && teamOrdersMenuInfo.numBots < 9; n++ ) { trap_GetConfigString( CS_PLAYERS + n, info, MAX_INFO_STRING ); - playerTeam = TEAM_SPECTATOR; // bk001204 = possible uninit use - if( n == cs.clientNum ) { playerTeam = *Info_ValueForKey( info, "t" ); continue; |