r5348 - trunk/data/qcsrc/common

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Dec 29 10:04:00 EST 2008


Author: div0
Date: 2008-12-29 10:04:00 -0500 (Mon, 29 Dec 2008)
New Revision: 5348

Modified:
   trunk/data/qcsrc/common/gamecommand.qc
Log:
32 is a rounder number :P


Modified: trunk/data/qcsrc/common/gamecommand.qc
===================================================================
--- trunk/data/qcsrc/common/gamecommand.qc	2008-12-29 15:00:15 UTC (rev 5347)
+++ trunk/data/qcsrc/common/gamecommand.qc	2008-12-29 15:04:00 UTC (rev 5348)
@@ -148,7 +148,7 @@
 		s2 = "";
 		
 		n = strlen(s);
-		j = (6 * max(1, floor(strlen(s)/24 + random() * 2 - 1))) / n;
+		j = (6 * max(1, floor(strlen(s)/32 + random() * 2 - 1))) / n;
 		f = random() * 6;
 
 		for(i = 0; i < n; ++i)




More information about the nexuiz-commits mailing list