r1505 - trunk/code/server
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Mon Mar 2 12:29:51 EST 2009
Author: ludwig
Date: 2009-03-02 12:29:51 -0500 (Mon, 02 Mar 2009)
New Revision: 1505
Modified:
trunk/code/server/sv_client.c
Log:
fix STANDALONE challengeResponse (#4000)
Modified: trunk/code/server/sv_client.c
===================================================================
--- trunk/code/server/sv_client.c 2009-03-02 17:29:46 UTC (rev 1504)
+++ trunk/code/server/sv_client.c 2009-03-02 17:29:51 UTC (rev 1505)
@@ -82,11 +82,8 @@
}
#ifdef STANDALONE
- if(Cvar_VariableIntegerValue("com_standalone"))
- {
- challenge->pingTime = svs.time;
- NET_OutOfBandPrint( NS_SERVER, from, "challengeResponse %i", challenge->challenge );
- }
+ challenge->pingTime = svs.time;
+ NET_OutOfBandPrint( NS_SERVER, from, "challengeResponse %i", challenge->challenge );
#else
// if they are on a lan address, send the challengeResponse immediately
if ( Sys_IsLANAddress( from ) ) {
More information about the quake3-commits
mailing list