diff options
| -rw-r--r-- | src/game/g_client.c | 6 | 
1 files changed, 1 insertions, 5 deletions
diff --git a/src/game/g_client.c b/src/game/g_client.c index cc3d40e..9e86d9f 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -957,11 +957,7 @@ static void ClientCleanName( const char *in, char *out, int outSize, qboolean sp          break;        } -      // don't allow black in a name, unless if special -      if( ColorIndex( *in ) == 0 && !special ) -        *out++ = COLOR_WHITE; -      else -        *out++ = *in; +	  *out++ = *in;        in++;        continue;  | 
