[nexuiz-commits] r7416 - trunk/data/qcsrc/server
    DONOTREPLY at icculus.org 
    DONOTREPLY at icculus.org
       
    Sun Aug  9 14:50:35 EDT 2009
    
    
  
Author: div0
Date: 2009-08-09 14:50:35 -0400 (Sun, 09 Aug 2009)
New Revision: 7416
Modified:
   trunk/data/qcsrc/server/g_tetris.qc
Log:
switch I with J for better coloring
Modified: trunk/data/qcsrc/server/g_tetris.qc
===================================================================
--- trunk/data/qcsrc/server/g_tetris.qc	2009-08-09 18:47:58 UTC (rev 7415)
+++ trunk/data/qcsrc/server/g_tetris.qc	2009-08-09 18:50:35 UTC (rev 7416)
@@ -232,11 +232,11 @@
 	if (pc == 1)
 		return '5 5 0'; // O
 	else if (pc == 2)
-		return '85 0 0'; // I
+		return '1 21 0'; // J
 	else if (pc == 3)
 		return '21 1 0'; // L
 	else if (pc == 4)
-		return '1 21 0'; // J
+		return '85 0 0'; // I
 	else if (pc == 5)
 		return '5 20 0'; // Z
 	else if (pc == 6)
@@ -252,11 +252,11 @@
 	if(pc == 1)
 		return '1.5 1.5 0'; // O
 	else if (pc == 2)
-		return '2.5 1.5 0'; // I
+		return '2 2 0'; // J
 	else if (pc == 3)
 		return '2 1 0'; // L
 	else if (pc == 4)
-		return '2 2 0'; // J
+		return '2.5 1.5 0'; // I
 	else if (pc == 5)
 		return '2 2 0'; // Z
 	else if (pc == 6)
    
    
More information about the nexuiz-commits
mailing list