[quake3-commits] r2307 - trunk/code/server
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Thu Aug 16 17:38:02 EDT 2012
Author: ztm
Date: 2012-08-16 17:38:02 -0400 (Thu, 16 Aug 2012)
New Revision: 2307
Modified:
trunk/code/server/sv_main.c
Log:
Don't replay to status OOB requests in Team Arena single player.
Modified: trunk/code/server/sv_main.c
===================================================================
--- trunk/code/server/sv_main.c 2012-08-08 09:42:33 UTC (rev 2306)
+++ trunk/code/server/sv_main.c 2012-08-16 21:38:02 UTC (rev 2307)
@@ -552,7 +552,7 @@
char infostring[MAX_INFO_STRING];
// ignore if we are in single player
- if ( Cvar_VariableValue( "g_gametype" ) == GT_SINGLE_PLAYER ) {
+ if ( Cvar_VariableValue( "g_gametype" ) == GT_SINGLE_PLAYER || Cvar_VariableValue("ui_singlePlayerActive")) {
return;
}
More information about the quake3-commits
mailing list