2016-03-02 19:28:01 +00:00
package me.totalfreedom.totalfreedommod.command ;
2015-10-19 17:43:46 +00:00
2016-03-06 15:56:15 +00:00
import me.totalfreedom.totalfreedommod.rank.Rank ;
2015-10-19 17:43:46 +00:00
import me.totalfreedom.totalfreedommod.util.FUtil ;
import org.bukkit.command.Command ;
import org.bukkit.command.CommandSender ;
import org.bukkit.entity.Player ;
2016-03-06 15:56:15 +00:00
@CommandPermissions ( level = Rank . SUPER_ADMIN , source = SourceType . BOTH )
2016-02-29 21:27:11 +00:00
@CommandParameters ( description = " Remove various server entities that may cause lag, such as dropped items, minecarts, and boats. " , usage = " /<command> <carts> " , aliases = " ew,rd " )
public class Command_entitywipe extends FreedomCommand
2015-10-19 17:43:46 +00:00
{
2015-11-22 18:26:47 +00:00
2015-10-19 17:43:46 +00:00
@Override
2015-11-22 18:26:47 +00:00
public boolean run ( CommandSender sender , Player playerSender , Command cmd , String commandLabel , String [ ] args , boolean senderIsConsole )
2015-10-19 17:43:46 +00:00
{
FUtil . adminAction ( sender . getName ( ) , " Removing all server entities. " , true ) ;
2016-08-26 10:34:18 +00:00
msg ( ( plugin . ew . wipeEntities ( ) ) + " entities removed. " ) ;
2015-10-19 17:43:46 +00:00
return true ;
}
}