r3876 - trunk/data/qcsrc/client
    DONOTREPLY at icculus.org 
    DONOTREPLY at icculus.org
       
    Mon Jul 21 12:39:53 EDT 2008
    
    
  
Author: blub0
Date: 2008-07-21 12:39:53 -0400 (Mon, 21 Jul 2008)
New Revision: 3876
Modified:
   trunk/data/qcsrc/client/sbar.qc
Log:
fixed teamsorting, I guess
Modified: trunk/data/qcsrc/client/sbar.qc
===================================================================
--- trunk/data/qcsrc/client/sbar.qc	2008-07-21 16:17:48 UTC (rev 3875)
+++ trunk/data/qcsrc/client/sbar.qc	2008-07-21 16:39:53 UTC (rev 3876)
@@ -316,7 +316,7 @@
 	}
 
 	other = tm.sort_next;
-	while(other && tm.sb_caps == tm.sb_caps && tm.sb_frags < other.sb_frags)
+	while(other && tm.sb_caps == other.sb_caps && tm.sb_frags < other.sb_frags)
 	{
 		SORT_SWAP(tm, other);
 		other = tm.sort_next;
    
    
More information about the nexuiz-commits
mailing list