Master builder title, resolves #36

This commit is contained in:
ZeroEpoch1969
2018-05-11 20:09:23 -07:00
parent 83017e518d
commit 1371e23d59
5 changed files with 12 additions and 25 deletions

View File

@ -6,6 +6,7 @@ import org.bukkit.ChatColor;
public enum Title implements Displayable
{
MASTER_BUILDER("a", "Master Builder", ChatColor.DARK_AQUA, "Master-Builder"),
DEVELOPER("a", "Developer", ChatColor.DARK_PURPLE, "Dev"),
OWNER("the", "Owner", ChatColor.BLUE, "Owner");
@ -43,10 +44,4 @@ public enum Title implements Displayable
return determiner + " " + color + ChatColor.ITALIC + name;
}
@Override
public String getAbbr()
{
return abbr;
}
}