r4582 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Thu Oct 2 11:59:29 EDT 2008


Author: div0
Date: 2008-10-02 11:59:29 -0400 (Thu, 02 Oct 2008)
New Revision: 4582

Modified:
   trunk/data/qcsrc/client/waypointsprites.qc
Log:
support cl_hidewaypoints 2 (hide all)


Modified: trunk/data/qcsrc/client/waypointsprites.qc
===================================================================
--- trunk/data/qcsrc/client/waypointsprites.qc	2008-10-02 15:47:08 UTC (rev 4581)
+++ trunk/data/qcsrc/client/waypointsprites.qc	2008-10-02 15:59:29 UTC (rev 4582)
@@ -71,6 +71,9 @@
 	if(self.hideflags & 2)
 		return; // radar only
 
+	if(cvar("cl_hidewaypoints") >= 2)
+		return;
+
 	if(self.hideflags & 1)
 		if(cvar("cl_hidewaypoints"))
 			return; // fixed waypoint




More information about the nexuiz-commits mailing list