mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Fix random bot not looking for bots by funname
Quake 3's Anarki bot has a 'funname' with colors in it. This commit fixes Anarki not being detected as in use.
This commit is contained in:
parent
23a331c9f8
commit
51649695a5
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue