[quake3-commits] r1847 - trunk/code/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Feb 4 10:11:57 EST 2011


Author: thilo
Date: 2011-02-04 10:11:57 -0500 (Fri, 04 Feb 2011)
New Revision: 1847

Modified:
   trunk/code/server/sv_client.c
Log:
Thanks Simon McVittie for fixing the bug regression in https://bugzilla.icculus.org/show_bug.cgi?id=4629


Modified: trunk/code/server/sv_client.c
===================================================================
--- trunk/code/server/sv_client.c	2011-02-04 15:07:32 UTC (rev 1846)
+++ trunk/code/server/sv_client.c	2011-02-04 15:11:57 UTC (rev 1847)
@@ -1482,7 +1482,7 @@
 
 	if (clientOK) {
 		// pass unknown strings to the game
-		if (!u->name && sv.state == SS_GAME && cl->state == CS_ACTIVE) {
+		if (!u->name && sv.state == SS_GAME && (cl->state == CS_ACTIVE || cl->state == CS_PRIMED)) {
 			Cmd_Args_Sanitize();
 			VM_Call( gvm, GAME_CLIENT_COMMAND, cl - svs.clients );
 		}



More information about the quake3-commits mailing list