Ported all useful features from MobArena over to TFM

This commit is contained in:
WickedGamingUK
2014-10-27 11:23:08 +00:00
committed by Jerom van der Sar
parent 5c50069f21
commit 310ce4f75a
7 changed files with 144 additions and 5 deletions

View File

@ -983,6 +983,17 @@ public class TFM_Util
}
public static void reportAction(Player reporter, Player reported, String report)
{
for (Player player : Bukkit.getOnlinePlayers())
{
if (TFM_AdminList.isSuperAdmin(player))
{
playerMsg(player, ChatColor.RED + "[REPORTS] " + ChatColor.GOLD + reporter.getName() + " has reported " + reported.getName() + " for " + report);
}
}
}
public static class TFM_EntityWiper
{
private static final List<Class<? extends Entity>> WIPEABLES = new ArrayList<Class<? extends Entity>>();