chat icon manager: update clan rank to idx mapping

Nobody was added with key -6
This commit is contained in:
Adam
2021-06-18 18:07:57 -04:00
committed by Max Weber
parent d566998179
commit c4a93d4d81

View File

@@ -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);
}
}