From 60b9c5380768027ac54c55c617597c0ccd8aa0df Mon Sep 17 00:00:00 2001 From: Andrei Drexler Date: Thu, 10 Mar 2011 21:18:07 +0000 Subject: [PATCH] Added line break to the say commands. --- reaction/code/game/g_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reaction/code/game/g_cmds.c b/reaction/code/game/g_cmds.c index 34fcb5ff..7defd914 100644 --- a/reaction/code/game/g_cmds.c +++ b/reaction/code/game/g_cmds.c @@ -1546,7 +1546,7 @@ static void G_SayTo(gentity_t * ent, gentity_t * other, int mode, int color, con g_gametype.integer == GT_TEAMPLAY && level.team_round_going && mode != SAY_REF) return; - trap_SendServerCommand(other - g_entities, va("%s \"%s%c%c%s\"", + trap_SendServerCommand(other - g_entities, va("%s \"%s%c%c%s\n\"", mode == SAY_TEAM ? "tchat" : "chat", name, Q_COLOR_ESCAPE, color, message)); }