Old admin mode and commandspy saving

This commit is contained in:
ZeroEpoch1969
2018-04-19 07:29:19 -07:00
parent 200a856413
commit ffbe71f5dd
10 changed files with 135 additions and 29 deletions

View File

@ -13,6 +13,8 @@ public enum Title implements Displayable
@Getter
private final String name;
@Getter
private final String abbr;
@Getter
private final String tag;
@Getter
private final String coloredTag;
@ -23,8 +25,9 @@ public enum Title implements Displayable
{
this.determiner = determiner;
this.name = name;
this.tag = "[" + tag + "]";
this.coloredTag = ChatColor.DARK_GRAY + "[" + color + tag + ChatColor.DARK_GRAY + "]" + color;
this.abbr = tag;
this.tag = "[" + tag + "]";
this.color = color;
}
@ -40,4 +43,10 @@ public enum Title implements Displayable
return determiner + " " + color + ChatColor.ITALIC + name;
}
@Override
public String getAbbr()
{
return abbr;
}
}