mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-06-29 19:46:42 +00:00
Changes with chat, add some commands
This commit is contained in:
@ -61,6 +61,12 @@ public class RankManager extends FreedomService
|
||||
{
|
||||
return Title.DEVELOPER;
|
||||
}
|
||||
|
||||
// Contributors always show up
|
||||
if (FUtil.CONTRIBUTORS.contains(player.getName()))
|
||||
{
|
||||
return Title.CONTRIBUTOR;
|
||||
}
|
||||
|
||||
if (ConfigEntry.SERVER_EXECUTIVES.getList().contains(player.getName()) && plugin.al.isAdmin(player))
|
||||
{
|
||||
|
@ -11,6 +11,7 @@ public enum Title implements Displayable
|
||||
ASSISTANT_EXECUTIVE("an", "Assistant Executive", ChatColor.RED, "Asst Exec"),
|
||||
EXECUTIVE("an", "Executive", ChatColor.RED, "Exec"),
|
||||
DEVELOPER("a", "Developer", ChatColor.DARK_PURPLE, "Dev"),
|
||||
CONTRIBUTOR("a", "TotalFreedom Contributor", ChatColor.DARK_PURPLE, "Contributor"),
|
||||
OWNER("the", "Owner", ChatColor.DARK_RED, "Owner");
|
||||
|
||||
private final String determiner;
|
||||
|
Reference in New Issue
Block a user