From 78f35019e3dc1e243b60e018e5f3f368236f5b29 Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Tue, 26 Feb 2002 03:58:19 +0000 Subject: [PATCH] Added a newline to the say messages from the server --- reaction/game/g_svcmds.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/reaction/game/g_svcmds.c b/reaction/game/g_svcmds.c index 4bc3d6f9..169a60da 100644 --- a/reaction/game/g_svcmds.c +++ b/reaction/game/g_svcmds.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.6 2002/02/26 03:58:19 jbravo +// Added a newline to the say messages from the server +// // Revision 1.5 2002/01/11 19:48:30 jbravo // Formatted the source in non DOS format. // @@ -462,11 +465,11 @@ qboolean ConsoleCommand( void ) { if (g_dedicated.integer) { if (Q_stricmp (cmd, "say") == 0) { - trap_SendServerCommand( -1, va("print \"server: %s\"", ConcatArgs(1) ) ); + trap_SendServerCommand( -1, va("print \"server: %s\n\"", ConcatArgs(1) ) ); return qtrue; } // everything else will also be printed as a say command - trap_SendServerCommand( -1, va("print \"server: %s\"", ConcatArgs(0) ) ); + trap_SendServerCommand( -1, va("print \"server: %s\n\"", ConcatArgs(0) ) ); return qtrue; }