chat icon manager: update clan rank to idx mapping

Nobody was added with key -6
This commit is contained in:
Adam
2021-06-23 04:59:13 -06:00
committed by Max Weber
parent d566998179
commit c4a93d4d81
@@ -165,7 +165,7 @@ public class ChatIconManager
private static int clanRankToIdx(int key)
{
// keys are -5 to 264, with no 0
return key < 0 ? ~key : (key + 4);
// keys are -6 to 265, with no 0
return key < 0 ? ~key : (key + 5);
}
}