Merge pull request #4417 from deathbeam/clan-member-rank-jmod

Add JMod clan member rank
This commit is contained in:
Tomas Slusny
2018-07-21 10:53:53 +02:00
committed by GitHub
3 changed files with 10 additions and 4 deletions

View File

@@ -71,7 +71,11 @@ public enum ClanMemberRank
/**
* Channel owner rank.
*/
OWNER(7);
OWNER(7),
/**
* JMod rank.
*/
JMOD(127);
private static final Map<Integer, ClanMemberRank> RANKS = new HashMap<>();