From 6f9665527e807ce12070f4a763844918b5654801 Mon Sep 17 00:00:00 2001 From: Roman Tetelman Date: Sat, 3 Oct 2009 12:28:43 +0000 Subject: * color console chat to make it more noticable --- src/game/g_svcmds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 ) -- cgit