Browse Source

allow min_bots=0 #421

bot10-allow-min_bots-0
ghost 11 months ago
parent
commit
9f6a976898
  1. 2
      dlls/client.cpp

2
dlls/client.cpp

@ -117,7 +117,7 @@ BOOL ClientConnect( edict_t *pEntity, const char *pszName, const char *pszAddres
// if there are currently more than the minimum number of bots running // if there are currently more than the minimum number of bots running
// then kick one of the bots off the server... // then kick one of the bots off the server...
if( ( min_bots != 0 ) && ( count > min_bots ) ) if( count > min_bots )
{ {
for( i = 0; i < 32; i++ ) for( i = 0; i < 32; i++ )
{ {

Loading…
Cancel
Save