kick bots by client number instead of name to avoid problems with

weird names (reported by 'DD')
This commit is contained in:
Ludwig Nussel 2006-12-29 11:41:35 +00:00
parent a9db8cc1f8
commit 739409973a
1 changed files with 1 additions and 4 deletions

View File

@ -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;