r4178 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Aug 25 02:48:03 EDT 2008


Author: div0
Date: 2008-08-25 02:48:03 -0400 (Mon, 25 Aug 2008)
New Revision: 4178

Modified:
   trunk/data/qcsrc/client/sbar.qc
Log:
proper mmsss display for fraglimit


Modified: trunk/data/qcsrc/client/sbar.qc
===================================================================
--- trunk/data/qcsrc/client/sbar.qc	2008-08-25 06:35:52 UTC (rev 4177)
+++ trunk/data/qcsrc/client/sbar.qc	2008-08-25 06:48:03 UTC (rev 4178)
@@ -892,9 +892,11 @@
 		{
 			if(tl > 0)
 				str = strcat(str, " or");
-			str = strcat(str, " until ^3", ftos(fl));
+			str = strcat(str, " until ^3", ScoreString(scores_flags[ps_primary], fl));
 			if(scores_label[ps_primary] == "score")
 				str = strcat(str, " points^7");
+			else if(scores_label[ps_primary] == "fastest")
+				str = strcat(str, " is beaten^7");
 			else
 				str = strcat(str, " ", scores_label[ps_primary]);
 		}




More information about the nexuiz-commits mailing list