diff options
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 ) |