Revert "Merge branch 'development' of https://github.com/TFPatches/TotalFreedomMod into development"

This reverts commit 4407e9e6ec, reversing
changes made to e4c9ea656e.
This commit is contained in:
2020-08-15 17:41:23 -05:00
parent 4407e9e6ec
commit da80f1b69e
186 changed files with 1828 additions and 1275 deletions

View File

@ -63,7 +63,7 @@ public class FSync
@Override
public void run()
{
plugin.cm.staffChat(sender, message);
plugin.cm.adminChat(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().sl.isVanished(player))
if (!TotalFreedomMod.plugin().al.isVanished(player))
{
names.add(player.getName());
}
@ -314,9 +314,9 @@ public class FUtil
player.setFlying(flying);
}
public static void staffAction(String staffMemberName, String action, boolean isRed)
public static void adminAction(String adminName, String action, boolean isRed)
{
FUtil.bcastMsg(staffMemberName + " - " + action, (isRed ? ChatColor.RED : ChatColor.AQUA));
FUtil.bcastMsg(adminName + " - " + action, (isRed ? ChatColor.RED : ChatColor.AQUA));
}
public static String formatLocation(Location location)