Don't try using QW extensions in Q2.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@480 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-11-20 00:51:57 +00:00
parent 4805ea3409
commit 5b2eb1c44b

View file

@ -844,6 +844,9 @@ void SVC_GetChallenge (void)
buf = va("%c%i", S2C_CHALLENGE, svs.challenges[i].challenge);
over = buf + strlen(buf) + 1;
if (svprogfuncs)
{
#ifdef PROTOCOL_VERSION_FTE
//tell the client what fte extensions we support
if (svs.fteprotocolextensions)
@ -871,6 +874,7 @@ void SVC_GetChallenge (void)
over+=4;
}
#endif
}
Netchan_OutOfBand(NS_SERVER, net_from, strlen(buf)+1+4+4, buf);
}