kick bots by client number instead of name to avoid problems with
weird names (reported by 'DD')
This commit is contained in:
@@ -306,7 +306,6 @@ G_RemoveRandomBot
|
||||
*/
|
||||
int G_RemoveRandomBot( int team ) {
|
||||
int i;
|
||||
char netname[36];
|
||||
gclient_t *cl;
|
||||
|
||||
for ( i=0 ; i< g_maxclients.integer ; i++ ) {
|
||||
@@ -320,9 +319,7 @@ int G_RemoveRandomBot( int team ) {
|
||||
if ( team >= 0 && cl->sess.sessionTeam != team ) {
|
||||
continue;
|
||||
}
|
||||
strcpy(netname, cl->pers.netname);
|
||||
Q_CleanStr(netname);
|
||||
trap_SendConsoleCommand( EXEC_INSERT, va("kick %s\n", netname) );
|
||||
trap_SendConsoleCommand( EXEC_INSERT, va("clientkick %d\n", cl->ps.clientNum) );
|
||||
return qtrue;
|
||||
}
|
||||
return qfalse;
|
||||
|
Reference in New Issue
Block a user