Some color changes

This commit is contained in:
ZeroEpoch1969 2018-05-24 16:25:22 -07:00
parent ff3f9f0a66
commit f7f6c47a1a
No known key found for this signature in database
GPG key ID: E0AAB104FB9F8FDF
2 changed files with 4 additions and 4 deletions

View file

@ -7,8 +7,8 @@ public enum Rank implements Displayable
{
IMPOSTOR("an", "Impostor", Type.PLAYER, "Imp", ChatColor.YELLOW),
NON_OP("a", "Non-Op", Type.PLAYER, "", ChatColor.GREEN),
OP("an", "Op", Type.PLAYER, "OP", ChatColor.RED),
NON_OP("a", "Non-Op", Type.PLAYER, "", ChatColor.WHITE),
OP("an", "Op", Type.PLAYER, "OP", ChatColor.GREEN),
SUPER_ADMIN("a", "Super Admin", Type.ADMIN, "SA", ChatColor.AQUA),
TELNET_ADMIN("a", "Telnet Admin", Type.ADMIN, "STA", ChatColor.DARK_GREEN),
SENIOR_ADMIN("a", "Senior Admin", Type.ADMIN, "SrA", ChatColor.GOLD),
@ -35,7 +35,7 @@ public enum Rank implements Displayable
this.abbr = abbr;
this.determiner = determiner;
this.tag = abbr.isEmpty() ? "" : "[" + abbr + "]";
this.coloredTag = ChatColor.DARK_GRAY + "[" + color + abbr + ChatColor.DARK_GRAY + "]" + color;
this.coloredTag = abbr.isEmpty() ? "" : ChatColor.DARK_GRAY + "[" + color + abbr + ChatColor.DARK_GRAY + "]" + color;
this.color = color;
}

View file

@ -7,7 +7,7 @@ public enum Title implements Displayable
{
MASTER_BUILDER("a", "Master Builder", ChatColor.DARK_AQUA, "Master-Builder"),
EXECUTIVE("an", "Executive", ChatColor.DARK_RED, "Executive"),
EXECUTIVE("an", "Executive", ChatColor.RED, "Exec"),
DEVELOPER("a", "Developer", ChatColor.DARK_PURPLE, "Dev"),
OWNER("the", "Owner", ChatColor.BLUE, "Owner");