|
4 | 4 |
|
5 | 5 | @Getter |
6 | 6 | public enum PunishmentTag { |
7 | | - PERSONAL_PROOF("Personal proof", "P", null, null), |
8 | | - GOLIATH("Punishment applied via Goliath", "G", null, null), |
9 | | - PLAYER_REPORT("Player Report", "R", null, null), |
10 | | - FORUMS("Forums", "F", null, null), |
11 | | - SLACK("Slack", "S", null, null), |
12 | | - WELFARE("Punishment applied over Welfare concern", "W", "STAFF", 99), |
13 | | - ACCOUNT_SECURITY_ALERT(null, "ASA", null, null), |
14 | | - RANKED_TEAM(null, "RT", null, null), |
15 | | - CHECK_BEFORE_UNBAN("Check with the punisher before unbanning this user", "U", "STAFF", null), |
16 | | - OVERWRITE("This punishment overwrote another punishment", "O", "STAFF", null); |
| 7 | + PERSONAL_PROOF("Personal proof", "P", null), |
| 8 | + GOLIATH("Punishment applied via Goliath", "G", null), |
| 9 | + PLAYER_REPORT("Player Report", "R", null), |
| 10 | + FORUMS("Forums", "F", null), |
| 11 | + SLACK("Slack", "S", null), |
| 12 | + WELFARE("Punishment applied over Welfare concern", "W", 99), |
| 13 | + ACCOUNT_SECURITY_ALERT(null, "ASA", null), |
| 14 | + RANKED_TEAM(null, "RT", null), |
| 15 | + CHECK_BEFORE_UNBAN("Check with the punisher before unbanning this user", "U", null), |
| 16 | + OVERWRITE("This punishment overwrote another punishment", "O", null); |
17 | 17 |
|
18 | 18 | private final String description; |
19 | 19 | private final String shortCode; |
20 | | - private final String requiredRank; |
21 | 20 | private final Integer group; |
22 | 21 |
|
23 | | - PunishmentTag(String description, String shortCode, String requiredRank, Integer group) { |
| 22 | + PunishmentTag(String description, String shortCode, Integer group) { |
24 | 23 | this.description = description; |
25 | 24 | this.shortCode = shortCode; |
26 | | - this.requiredRank = requiredRank; |
27 | 25 | this.group = group; |
28 | 26 | } |
29 | 27 |
|
|
0 commit comments