Admins are now known as staff

To other developers: If you find places where staff are refered to as only admins pls fix it for me.
This commit is contained in:
Seth
2020-08-14 23:44:57 -07:00
parent f42e047723
commit f5b5fcd5ef
187 changed files with 1228 additions and 1787 deletions

View File

@ -63,7 +63,7 @@ public class FSync
@Override
public void run()
{
plugin.cm.adminChat(sender, message);
plugin.cm.staffChat(sender, message);
}
}.runTask(plugin);

View File

@ -146,7 +146,7 @@ public class FUtil
List<String> names = new ArrayList<>();
for (Player player : Bukkit.getOnlinePlayers())
{
if (!TotalFreedomMod.plugin().al.isVanished(player))
if (!TotalFreedomMod.plugin().sl.isVanished(player))
{
names.add(player.getName());
}
@ -314,9 +314,9 @@ public class FUtil
player.setFlying(flying);
}
public static void adminAction(String adminName, String action, boolean isRed)
public static void staffAction(String staffMemberName, String action, boolean isRed)
{
FUtil.bcastMsg(adminName + " - " + action, (isRed ? ChatColor.RED : ChatColor.AQUA));
FUtil.bcastMsg(staffMemberName + " - " + action, (isRed ? ChatColor.RED : ChatColor.AQUA));
}
public static String formatLocation(Location location)