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); }