r5333 - trunk/data/qcsrc/common

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Dec 28 14:48:19 EST 2008


Author: div0
Date: 2008-12-28 14:48:19 -0500 (Sun, 28 Dec 2008)
New Revision: 5333

Modified:
   trunk/data/qcsrc/common/gamecommand.qc
Log:
fix random call :P


Modified: trunk/data/qcsrc/common/gamecommand.qc
===================================================================
--- trunk/data/qcsrc/common/gamecommand.qc	2008-12-28 19:31:37 UTC (rev 5332)
+++ trunk/data/qcsrc/common/gamecommand.qc	2008-12-28 19:48:19 UTC (rev 5333)
@@ -149,7 +149,7 @@
 		n = strlen(s);
 		
 		j = random() * 0.3 + 0.2;
-		f = random();
+		f = random() * 6;
 
 		for(i = 0; i < n; ++i)
 		{




More information about the nexuiz-commits mailing list