From ddbf1199123be08b34ee2bb2693cdfc7ceaae999 Mon Sep 17 00:00:00 2001 From: havoc Date: Mon, 30 May 2005 23:09:32 +0000 Subject: [PATCH] don't echo player messages if not a dedicated server (as it produces double echoes) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5363 d7cf8633-e32d-0410-b094-e92efae38249 --- host_cmd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/host_cmd.c b/host_cmd.c index 01fcc7d2..e31254bc 100644 --- a/host_cmd.c +++ b/host_cmd.c @@ -951,7 +951,8 @@ void Host_Say(qboolean teamonly) SV_ClientPrint(text); host_client = save; - Con_Print(&text[1]); + if (cls.state == ca_dedicated) + Con_Print(&text[1]); } -- 2.39.2