summaryrefslogtreecommitdiff
path: root/src/game/g_svcmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/g_svcmds.c')
-rw-r--r--src/game/g_svcmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_svcmds.c b/src/game/g_svcmds.c
index 096b861d..90fd717d 100644
--- a/src/game/g_svcmds.c
+++ b/src/game/g_svcmds.c
@@ -352,7 +352,7 @@ static void Svcmd_TeamMessage_f( void )
return;
}
- G_TeamCommand( team, va( "tchat \"console: %s\"", ConcatArgs( 2 ) ) );
+ G_TeamCommand( team, va( "tchat \"console: ^5%s\"", ConcatArgs( 2 ) ) );
}
static void Svcmd_SendMessage( void )
@@ -366,7 +366,7 @@ static void Svcmd_SendMessage( void )
return;
}
- trap_SendServerCommand( -1, va( "chat \"console: %s\"", ConcatArgs( 1 ) ) );
+ trap_SendServerCommand( -1, va( "chat \"console: ^2%s\"", ConcatArgs( 1 ) ) );
}
static void Svcmd_CenterPrint_f( void )