From 82b826e9ad2c22b4c09f6e19b8d0587947a54199 Mon Sep 17 00:00:00 2001 From: blub0 Date: Mon, 21 Jul 2008 16:39:53 +0000 Subject: [PATCH] fixed teamsorting, I guess git-svn-id: svn://svn.icculus.org/nexuiz/trunk@3876 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- data/qcsrc/client/sbar.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/qcsrc/client/sbar.qc b/data/qcsrc/client/sbar.qc index a88c3187f..35c4dc813 100644 --- a/data/qcsrc/client/sbar.qc +++ b/data/qcsrc/client/sbar.qc @@ -316,7 +316,7 @@ void Sbar_UpdateTeamPosFrags(entity tm) } 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; -- 2.39.2