diff options
Diffstat (limited to 'src')
| -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 4b37a64..d2663bc 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -958,11 +958,7 @@ static void ClientCleanName( const char *in, char *out, int outSize )          break;        } -      // don't allow black in a name, period -      if( ColorIndex( *in ) == 0 ) -        *out++ = COLOR_WHITE; -      else -        *out++ = *in; +      *out++ = *in;        in++;        continue;  | 
