1
0
Fork 0
This commit is contained in:
ToKu 2022-01-21 22:22:05 +01:00
parent ca4489ca6c
commit 6fe0ef468f
1 changed files with 2 additions and 2 deletions

View File

@ -445,7 +445,7 @@ static void SV_KickBots_f( void ) {
}
for( i = 0, cl = svs.clients; i < sv_maxclients->integer; i++, cl++ ) {
if ( cl->state >= CS_CONNECTED ) {
if ( cl->state < CS_CONNECTED ) {
continue;
}
@ -475,7 +475,7 @@ static void SV_KickAll_f( void ) {
}
for( i = 0, cl = svs.clients; i < sv_maxclients->integer; i++, cl++ ) {
if ( cl->state >= CS_CONNECTED ) {
if ( cl->state < CS_CONNECTED ) {
continue;
}