From: havoc Date: Fri, 15 Jun 2007 08:09:01 +0000 (+0000) Subject: another attempt at fixing bugs with downloads caused by the workaround X-Git-Tag: xonotic-v0.1.0preview~3033 X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=fc324557b79cae59f852379d64693f47d2419e96 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 --- 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)