summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2010-10-06 20:39:52 +0400
committerAndrey Nazarov <skuller@skuller.net>2010-10-06 20:39:52 +0400
commit1f476c8de03427883ab76c504d4949dc4fa894c7 (patch)
tree47d1e7eaaec6894565c7191e595ff0a43435f271 /src
parent47a5d9e140b64ba080a11b67ccda9e4ec0b48609 (diff)
Echo server console chat in color.
Diffstat (limited to 'src')
-rw-r--r--src/sv_ccmds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sv_ccmds.c b/src/sv_ccmds.c
index 78e914a..ea56508 100644
--- a/src/sv_ccmds.c
+++ b/src/sv_ccmds.c
@@ -639,7 +639,7 @@ static void SV_ConSay_f( void ) {
char *s;
if( !svs.initialized ) {
- Com_Printf( "No server running\n" );
+ Com_Printf( "No server running.\n" );
return;
}
@@ -656,7 +656,7 @@ static void SV_ConSay_f( void ) {
}
if( Com_IsDedicated() ) {
- Com_Printf( "console: %s\n", s );
+ Com_LPrintf( PRINT_TALK, "console: %s\n", s );
}
}
@@ -699,7 +699,7 @@ static void SV_DumpUser_f( void ) {
char buffer[MAX_QPATH];
if( !svs.initialized ) {
- Com_Printf( "No server running\n" );
+ Com_Printf( "No server running.\n" );
return;
}