From fc324557b79cae59f852379d64693f47d2419e96 Mon Sep 17 00:00:00 2001 From: havoc Date: Fri, 15 Jun 2007 08:09:01 +0000 Subject: [PATCH] another attempt at fixing bugs with downloads caused by the workaround that prevents old clients from getting disconnected on map change git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7428 d7cf8633-e32d-0410-b094-e92efae38249 --- sv_user.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sv_user.c b/sv_user.c index 86fca561..cc76cd31 100644 --- a/sv_user.c +++ b/sv_user.c @@ -758,6 +758,9 @@ void SV_ReadClientMessage(void) break; case clc_stringcmd: + // allow reliable messages now as the client is done with initial loading + if (host_client->sendsignon == 2) + host_client->sendsignon = 0; s = MSG_ReadString (); q = NULL; for(p = s; *p; ++p) switch(*p) -- 2.39.2