Make owner join message plural

This commit is contained in:
Business Goose 2022-03-28 20:43:06 +01:00
parent 4415e4d188
commit 96f8a17126
No known key found for this signature in database
GPG Key ID: 77DCA801362E9645
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public enum PlayerRank implements Comparator<PlayerRank>, Comparable<PlayerRank>
TELNET("a " + ChatColor.DARK_GREEN + "Super Telnet Admin", ChatColor.DARK_GREEN + "[STA]", "Super Telnet Admins", 4),
SENIOR("a " + ChatColor.LIGHT_PURPLE + "Senior Admin", ChatColor.LIGHT_PURPLE + "[SrA]", "Senior Admins", 5),
DEVELOPER("a " + ChatColor.DARK_PURPLE + "Developer", ChatColor.DARK_PURPLE + "[Dev]", "Developers", 6),
OWNER("the " + ChatColor.BLUE + "Owner", ChatColor.BLUE + "[Owner]", "Owners", 7),
OWNER("an " + ChatColor.BLUE + "Owner", ChatColor.BLUE + "[Owner]", "Owners", 7),
CONSOLE("The " + ChatColor.DARK_PURPLE + "Console", ChatColor.DARK_PURPLE + "[Console]", 8);
private final String loginMessage;
private final String prefix;