chat icon manager: update clan rank to idx mapping
Nobody was added with key -6
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user