TotalFreedomMod/src/main/java/me/totalfreedom/totalfreedommod/command/Command_entitywipe.java

23 lines
905 B
Java
Raw Normal View History

package me.totalfreedom.totalfreedommod.command;
import me.totalfreedom.totalfreedommod.rank.Rank;
import me.totalfreedom.totalfreedommod.util.FUtil;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
@CommandPermissions(level = Rank.SUPER_ADMIN, source = SourceType.BOTH)
2019-01-29 04:57:41 +00:00
@CommandParameters(description = "Remove various server entities that may cause lag, such as dropped items, minecarts, and boats.", usage = "/<command>", aliases = "ew,rd")
public class Command_entitywipe extends FreedomCommand
{
@Override
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
{
2018-02-21 17:04:46 +00:00
FUtil.adminAction(sender.getName(), "Removing all server entities", true);
msg((plugin.ew.wipeEntities(true)) + " entities removed.");
return true;
}
}