respawn configured bots (#422)

Co-authored-by: ghost <localhost>
This commit is contained in:
d47081 2024-01-12 00:16:47 +02:00 committed by GitHub
parent bcf4799915
commit 6d2f4bc58f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -1370,7 +1370,14 @@ void StartFrame( void )
// then add another bot using the default skill level...
if( count < max_bots )
{
BotCreate( NULL, NULL, NULL );
for( i = 0; i < 32; i++ )
{
if( !bot_respawn[i].is_used && bot_respawn[i].state == BOT_IDLE)
{
BotCreate( bot_respawn[i].skin, bot_respawn[i].name, bot_respawn[i].skill );
break;
}
}
}
}