diff --git a/code/game/g_bot.c b/code/game/g_bot.c index 1ec4f680..bda1f7d5 100644 --- a/code/game/g_bot.c +++ b/code/game/g_bot.c @@ -232,6 +232,8 @@ static void PlayerIntroSound( const char *modelAndSkin ) { =============== G_CountBotPlayersByName +Check connected and connecting (delay join) bots. + Returns number of bots with name on specified team or whole server if team is -1. =============== */ @@ -242,7 +244,7 @@ int G_CountBotPlayersByName( const char *name, int team ) { num = 0; for ( i=0 ; i< g_maxclients.integer ; i++ ) { cl = level.clients + i; - if ( cl->pers.connected != CON_CONNECTED ) { + if ( cl->pers.connected == CON_DISCONNECTED ) { continue; } if ( !(g_entities[i].r.svFlags & SVF_BOT) ) {