Browse Source

respawn configured bots

respawn-bots-configured
ghost 11 months ago
parent
commit
c786c8a460
  1. 9
      dlls/client.cpp

9
dlls/client.cpp

@ -1370,7 +1370,14 @@ void StartFrame( void ) @@ -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;
}
}
}
}

Loading…
Cancel
Save