diff --git a/code/game/g_bot.c b/code/game/g_bot.c index 3b1e0112..4d3eb612 100644 --- a/code/game/g_bot.c +++ b/code/game/g_bot.c @@ -273,7 +273,10 @@ int G_SelectRandomBotInfo( int team ) { num = 0; for ( n = 0; n < g_numBots ; n++ ) { - value = Info_ValueForKey( g_botInfos[n], "name" ); + value = Info_ValueForKey( g_botInfos[n], "funname" ); + if ( !value[0] ) { + value = Info_ValueForKey( g_botInfos[n], "name" ); + } // if ( G_CountBotPlayersByName( value, team ) == 0 ) { selection[num++] = n;