[nexuiz-commits] r8092 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Oct 11 06:47:37 EDT 2009


Author: fruitiex
Date: 2009-10-11 06:47:37 -0400 (Sun, 11 Oct 2009)
New Revision: 8092

Modified:
   trunk/data/qcsrc/client/sbar.qc
Log:
fix a stupid bug


Modified: trunk/data/qcsrc/client/sbar.qc
===================================================================
--- trunk/data/qcsrc/client/sbar.qc	2009-10-11 10:27:17 UTC (rev 8091)
+++ trunk/data/qcsrc/client/sbar.qc	2009-10-11 10:47:37 UTC (rev 8092)
@@ -3043,7 +3043,7 @@
 void CSQC_race_hud(void) 
 {
 	entity me;
-	me = (spectatee_status > 0) ? playerslots[spectatee_status - 1] : playerslots[player_localentnum - 1];
+	me = playerslots[player_localentnum - 1];
 	float crecordtime, srecordtime, score;
 	float f; // yet another function has this
 	score = me.(scores[ps_primary]);



More information about the nexuiz-commits mailing list