From fa034c17ecb85e5b1574f102755131fa9d6460e3 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Mon, 24 Jul 2017 20:55:14 -0500 Subject: [PATCH] Echo server say/tell/sayto message to console --- code/server/sv_ccmds.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/server/sv_ccmds.c b/code/server/sv_ccmds.c index 5f26b853..2ba8194d 100644 --- a/code/server/sv_ccmds.c +++ b/code/server/sv_ccmds.c @@ -1260,6 +1260,7 @@ static void SV_ConSay_f(void) { strcat(text, p); + Com_Printf("%s\n", text); SV_SendServerCommand(NULL, "chat \"%s\"", text); } @@ -1299,6 +1300,7 @@ static void SV_ConTell_f(void) { strcat(text, p); + Com_Printf("%s\n", text); SV_SendServerCommand(cl, "chat \"%s\"", text); } @@ -1364,6 +1366,7 @@ static void SV_ConSayto_f(void) { strcat(text, p); + Com_Printf("%s\n", text); SV_SendServerCommand(saytocl, "chat \"%s\"", text); }