diff options
author | Roman Tetelman <kevlarman@gmail.com> | 2009-10-03 12:28:43 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:58 +0000 |
commit | 6f9665527e807ce12070f4a763844918b5654801 (patch) | |
tree | 51886e7e443cce8536b41f681529cc3ac4b4dee3 /src/game | |
parent | 6ddab7c3ac21bc133f111157a71222a40ba651f3 (diff) |
* color console chat to make it more noticable
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_svcmds.c | 4 |
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 ) |