From: cloudwalk Date: Fri, 14 May 2021 16:23:09 +0000 (+0000) Subject: cl_parse: break on qw_svc_disconnect instead of return, consistent with regular svc_d... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0f290ba40e4ccca431d394159a3c38a18f98e89d;p=xonotic%2Fdarkplaces.git cl_parse: break on qw_svc_disconnect instead of return, consistent with regular svc_disconnect git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@13138 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_parse.c b/cl_parse.c index 4fc4a976..b8ff71f9 100644 --- a/cl_parse.c +++ b/cl_parse.c @@ -3533,7 +3533,7 @@ void CL_ParseServerMessage(void) Con_Printf("Server disconnected\n"); CL_Disconnect(); } - return; + break; case qw_svc_print: i = MSG_ReadByte(&cl_message);