mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-18 13:26:12 +00:00
86 lines
2.4 KiB
Java
86 lines
2.4 KiB
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
import me.totalfreedom.totalfreedommod.player.FPlayer;
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.World;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Entity;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.potion.PotionEffect;
|
|
|
|
@CommandPermissions(level = Rank.SUPER_ADMIN, source = SourceType.BOTH)
|
|
@CommandParameters(description = "Purge everything! (except for bans).", usage = "/<command>")
|
|
public class Command_purgeall extends FreedomCommand
|
|
{
|
|
|
|
@Override
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
{
|
|
FUtil.adminAction(sender.getName(), "Purging all player data", true);
|
|
|
|
// Purge entities
|
|
for (World world : Bukkit.getWorlds())
|
|
{
|
|
for (Entity entity : world.getEntities())
|
|
{
|
|
if (!(entity instanceof Player))
|
|
{
|
|
entity.remove();
|
|
}
|
|
}
|
|
}
|
|
|
|
for (Player player : server.getOnlinePlayers())
|
|
{
|
|
FPlayer fPlayer = plugin.pl.getPlayer(player);
|
|
|
|
// Unmute all players
|
|
if (fPlayer.isMuted())
|
|
{
|
|
fPlayer.setMuted(false);
|
|
}
|
|
|
|
// Unblock all commands
|
|
if (fPlayer.allCommandsBlocked())
|
|
{
|
|
fPlayer.setCommandsBlocked(false);
|
|
}
|
|
|
|
// Stop orbiting
|
|
if (fPlayer.isOrbiting())
|
|
{
|
|
fPlayer.stopOrbiting();
|
|
}
|
|
|
|
// Unfreeze
|
|
if (fPlayer.getFreezeData().isFrozen())
|
|
{
|
|
fPlayer.getFreezeData().setFrozen(false);
|
|
}
|
|
|
|
// Purge potion effects
|
|
for (PotionEffect potion_effect : player.getActivePotionEffects())
|
|
{
|
|
player.removePotionEffect(potion_effect.getType());
|
|
}
|
|
|
|
// Uncage
|
|
if (fPlayer.getCageData().isCaged())
|
|
{
|
|
fPlayer.getCageData().setCaged(false);
|
|
}
|
|
}
|
|
|
|
// Unfreeze all players
|
|
plugin.fm.setGlobalFreeze(false);
|
|
|
|
// Remove all mobs
|
|
Command_mobpurge.purgeMobs(null);
|
|
|
|
return true;
|
|
}
|
|
}
|