summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_client.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/game/g_client.c b/src/game/g_client.c
index 2ac76c73..173d2976 100644
--- a/src/game/g_client.c
+++ b/src/game/g_client.c
@@ -850,11 +850,7 @@ static void G_ClientCleanName( const char *in, char *out, int outSize )
*out++ = Q_COLOR_ESCAPE;
- // don't allow black in a name, period
- if( ColorIndex( *in ) == 0 )
- *out++ = COLOR_WHITE;
- else
- *out++ = *in;
+ *out++ = *in;
len += 2;
continue;