From 7f49727db5fc6f4674511dc01219d67b6df36cef Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 15 Mar 2004 20:41:34 +0000 Subject: [PATCH] bring back the missing chat logging --- qw/source/sv_user.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qw/source/sv_user.c b/qw/source/sv_user.c index e621de7ae..86e18ac65 100644 --- a/qw/source/sv_user.c +++ b/qw/source/sv_user.c @@ -845,6 +845,8 @@ SV_Say (qboolean team) dstring_appendstr (text, p); dstring_appendstr (text, "\n"); + SV_Printf ("%s", text->str); + for (j = 0, client = svs.clients; j < MAX_CLIENTS; j++, client++) { if (client->state < cs_connected) // Clients connecting can hear. continue;