diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2015-05-27 22:39:06 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2015-05-27 22:39:06 +0200 |
commit | 05e4e1479b4a57d781572afa4346a6ef960043de (patch) | |
tree | 2d469423d938acdfe9f101c9af5ac32903c68728 /src/game/g_client.c | |
parent | e532a5d3fa21784423bcaf6209b235f364684668 (diff) |
Remove /ignore.
Diffstat (limited to 'src/game/g_client.c')
-rw-r--r-- | src/game/g_client.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/game/g_client.c b/src/game/g_client.c index 896a7fc..9c999de 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1064,9 +1064,8 @@ char *ClientUserinfoChanged( int clientNum, qboolean forceName ) // print scoreboards, display models, and play custom sounds Com_sprintf( userinfo, sizeof( userinfo ), - "n\\%s\\t\\%i\\model\\%s\\ig\\%16s\\v\\%s", + "n\\%s\\t\\%i\\model\\%s\\v\\%s", client->pers.netname, client->pers.teamSelection, model, - Com_ClientListString( &client->sess.ignoreList ), client->pers.voice ); trap_SetConfigstring( CS_PLAYERS + clientNum, userinfo ); @@ -1660,13 +1659,6 @@ void ClientDisconnect( int clientNum ) G_namelog_disconnect( ent->client ); G_Vote( ent, TEAM_NONE, qfalse ); - // stop any following clients - for( i = 0; i < level.maxclients; i++ ) - { - // remove any /ignore settings for this clientNum - Com_ClientListRemove( &level.clients[ i ].sess.ignoreList, clientNum ); - } - // send effect if they were completely connected if( ent->client->pers.connected == CON_CONNECTED && ent->client->sess.spectatorState == SPECTATOR_NOT ) |