r5856 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Thu Feb 12 05:21:06 EST 2009


Author: div0
Date: 2009-02-12 05:20:51 -0500 (Thu, 12 Feb 2009)
New Revision: 5856

Modified:
   trunk/data/qcsrc/client/sbar.qc
Log:
remove most naggers in intermission


Modified: trunk/data/qcsrc/client/sbar.qc
===================================================================
--- trunk/data/qcsrc/client/sbar.qc	2009-02-12 08:13:21 UTC (rev 5855)
+++ trunk/data/qcsrc/client/sbar.qc	2009-02-12 10:20:51 UTC (rev 5856)
@@ -1740,7 +1740,7 @@
 
 	sbar_fontsize = Sbar_GetFontsize("sbar_fontsize");
 	
-	if(spectatee_status)
+	if(spectatee_status && !intermission)
 	{
 		if(spectatee_status == -1)
 			s = "^1Observing";
@@ -1786,7 +1786,7 @@
 			o = Sbar_DrawNoteLine(o, s);
 		}
 	}
-	if(warmup_stage)
+	if(warmup_stage && !intermission)
 	{
 		s = "^2Currently in ^1warmup^2 stage!";
 		o = Sbar_DrawNoteLine(o, s);
@@ -1801,7 +1801,7 @@
 	else
 		blinkcolor = "^3";
 
-	if(ready_waiting)
+	if(ready_waiting && !intermission)
 	{
 		if(ready_waiting_for_me)
 		{
@@ -1819,7 +1819,7 @@
 		}
 		o = Sbar_DrawNoteLine(o, s);
 	}
-	else if(warmup_stage) 
+	else if(warmup_stage && !intermission) 
 	{
 		s = strcat("^2Press ^3", getcommandkey("ready", "ready"), "^2 to end warmup");
 		o = Sbar_DrawNoteLine(o, s);
@@ -1846,7 +1846,7 @@
 			o = Sbar_DrawNoteLine(o, s);
 		}
 	}
-	if(teamplay)
+	if(teamplay && !intermission)
 	{
 		entity tm;
 		float ts_min, ts_max;




More information about the nexuiz-commits mailing list