From 9f4bb6b578fb5bbff79d7a9d751875d6d48557ec Mon Sep 17 00:00:00 2001 From: sezero Date: Fri, 5 Mar 2010 16:11:06 +0000 Subject: [PATCH] cl_main.c (CL_EstablishConnection): Send a clc_nop at the end of the function. This has been referred to by Baker as the NAT fix of ProQuake. Applied upon Steven's suggestion and it made me able to connect to bigfoot.quake1.net:26001 too. git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@98 af15c1b1-3010-417e-b628-4374ebc0bcbd --- quakespasm/Quake/cl_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/quakespasm/Quake/cl_main.c b/quakespasm/Quake/cl_main.c index 0f80f58e..df6c574b 100644 --- a/quakespasm/Quake/cl_main.c +++ b/quakespasm/Quake/cl_main.c @@ -171,6 +171,7 @@ void CL_EstablishConnection (char *host) cls.demonum = -1; // not in the demo loop now cls.state = ca_connected; cls.signon = 0; // need all the signon messages before playing + MSG_WriteByte (&cls.message, clc_nop); // NAT Fix from ProQuake } /*