mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-07-01 20:46:41 +00:00
Fixing marco's mistakes (#8)
This commit is contained in:
@ -1,14 +1,10 @@
|
||||
|
||||
|
||||
package me.totalfreedom.totalfreedommod.command;
|
||||
|
||||
import me.totalfreedom.totalfreedommod.player.FPlayer;
|
||||
import java.util.Iterator;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.commons.lang3.ArrayUtils;
|
||||
import me.totalfreedom.totalfreedommod.util.FUtil;
|
||||
import me.totalfreedom.totalfreedommod.TotalFreedomMod;
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.command.CommandSender;
|
||||
@ -18,91 +14,120 @@ import me.totalfreedom.totalfreedommod.rank.Rank;
|
||||
@CommandParameters(description = "Blocks all block placing for player with brute force.", usage = "/<command> [[-s] <player> [reason] | list | purge | all]", aliases = "editmute")
|
||||
public class Command_blockedit extends FreedomCommand
|
||||
{
|
||||
public boolean run(final CommandSender sender, final Player playerSender, final Command cmd, final String commandLabel, String[] args, final boolean senderIsConsole) {
|
||||
if (args.length == 0) {
|
||||
|
||||
@Override
|
||||
public boolean run(final CommandSender sender, final Player playerSender, final Command cmd, final String commandLabel, String[] args, final boolean senderIsConsole)
|
||||
{
|
||||
if (args.length == 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if (args[0].equals("list")) {
|
||||
this.msg("Block edits blocked for players:");
|
||||
|
||||
if (args[0].equals("list"))
|
||||
{
|
||||
msg("Block edits blocked for players:");
|
||||
int count = 0;
|
||||
for (final Player mp : this.server.getOnlinePlayers()) {
|
||||
final FPlayer info = ((TotalFreedomMod)this.plugin).pl.getPlayer(mp);
|
||||
if (info.isEditBlock()) {
|
||||
this.msg("- " + mp.getName());
|
||||
for (Player mp : server.getOnlinePlayers())
|
||||
{
|
||||
final FPlayer info = plugin.pl.getPlayer(mp);
|
||||
if (info.isEditBlocked())
|
||||
{
|
||||
msg("- " + mp.getName());
|
||||
++count;
|
||||
}
|
||||
}
|
||||
if (count == 0) {
|
||||
this.msg("- none");
|
||||
|
||||
if (count == 0)
|
||||
{
|
||||
msg("- none");
|
||||
}
|
||||
return true;
|
||||
}
|
||||
if (args[0].equals("purge")) {
|
||||
|
||||
if (args[0].equals("purge"))
|
||||
{
|
||||
FUtil.adminAction(sender.getName(), "Unblocking block edits for all players.", true);
|
||||
int count = 0;
|
||||
for (final Player mp : this.server.getOnlinePlayers()) {
|
||||
final FPlayer info = ((TotalFreedomMod)this.plugin).pl.getPlayer(mp);
|
||||
if (info.isEditBlock()) {
|
||||
for (final Player mp : this.server.getOnlinePlayers())
|
||||
{
|
||||
final FPlayer info = plugin.pl.getPlayer(mp);
|
||||
if (info.isEditBlocked())
|
||||
{
|
||||
info.setEditBlocked(false);
|
||||
++count;
|
||||
}
|
||||
}
|
||||
this.msg("Unblocked all block edit for " + count + " players.");
|
||||
msg("Unblocked all block edit for " + count + " players.");
|
||||
return true;
|
||||
}
|
||||
if (args[0].equals("all")) {
|
||||
|
||||
if (args[0].equals("all"))
|
||||
{
|
||||
FUtil.adminAction(sender.getName(), "Blocking block edits for all non-admins.", true);
|
||||
int counter = 0;
|
||||
for (final Player player : this.server.getOnlinePlayers()) {
|
||||
if (!((TotalFreedomMod)this.plugin).al.isAdmin((CommandSender)player)) {
|
||||
final FPlayer playerdata = ((TotalFreedomMod)this.plugin).pl.getPlayer(player);
|
||||
for (final Player player : this.server.getOnlinePlayers())
|
||||
{
|
||||
if (!plugin.al.isAdmin((CommandSender) player))
|
||||
{
|
||||
final FPlayer playerdata = plugin.pl.getPlayer(player);
|
||||
playerdata.setEditBlocked(true);
|
||||
++counter;
|
||||
}
|
||||
}
|
||||
this.msg("Blocked block edits for " + counter + " players.");
|
||||
|
||||
msg("Blocked block edits for " + counter + " players.");
|
||||
return true;
|
||||
}
|
||||
|
||||
final boolean smite = args[0].equals("-s");
|
||||
if (smite) {
|
||||
args = (String[])ArrayUtils.subarray((Object[])args, 1, args.length);
|
||||
if (args.length < 1) {
|
||||
if (smite)
|
||||
{
|
||||
args = (String[]) ArrayUtils.subarray((Object[]) args, 1, args.length);
|
||||
if (args.length < 1)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
final Player player2 = this.getPlayer(args[0]);
|
||||
if (player2 == null) {
|
||||
|
||||
final Player player2 = getPlayer(args[0]);
|
||||
if (player2 == null)
|
||||
{
|
||||
sender.sendMessage(FreedomCommand.PLAYER_NOT_FOUND);
|
||||
return true;
|
||||
}
|
||||
|
||||
String reason = null;
|
||||
if (args.length > 1) {
|
||||
reason = StringUtils.join((Object[])args, " ", 1, args.length);
|
||||
if (args.length > 1)
|
||||
{
|
||||
reason = StringUtils.join((Object[]) args, " ", 1, args.length);
|
||||
}
|
||||
final FPlayer playerdata2 = ((TotalFreedomMod)this.plugin).pl.getPlayer(player2);
|
||||
if (playerdata2.isEditBlock()) {
|
||||
|
||||
final FPlayer playerdata2 = plugin.pl.getPlayer(player2);
|
||||
if (playerdata2.isEditBlocked())
|
||||
{
|
||||
FUtil.adminAction(sender.getName(), "Unblocking block edits for " + player2.getName(), true);
|
||||
playerdata2.setEditBlocked(false);
|
||||
this.msg("Unblocking block edits for " + player2.getName());
|
||||
this.msg((CommandSender)player2, "Your block edits have been unblocked.", ChatColor.RED);
|
||||
msg("Unblocking block edits for " + player2.getName());
|
||||
msg(player2, "Your block edits have been unblocked.", ChatColor.RED);
|
||||
}
|
||||
else {
|
||||
if (((TotalFreedomMod)this.plugin).al.isAdmin((CommandSender)player2)) {
|
||||
this.msg(player2.getName() + " is an admin, and cannot have their block edits blocked.");
|
||||
else
|
||||
{
|
||||
if (plugin.al.isAdmin((CommandSender) player2))
|
||||
{
|
||||
msg(player2.getName() + " is an admin, and cannot have their block edits blocked.");
|
||||
return true;
|
||||
}
|
||||
|
||||
FUtil.adminAction(sender.getName(), "Blocking block edits for " + player2.getName(), true);
|
||||
playerdata2.setEditBlocked(true);
|
||||
if (smite) {
|
||||
Command_smite.smite(player2, sender);
|
||||
|
||||
if (smite)
|
||||
{
|
||||
Command_smite.smite(sender, player2, reason);
|
||||
}
|
||||
if (reason != null) {
|
||||
this.msg((CommandSender)player2, "Your block edits have been blocked. Reason: " + reason, ChatColor.RED);
|
||||
}
|
||||
else {
|
||||
this.msg((CommandSender)player2, "Your block edits have been blocked.", ChatColor.RED);
|
||||
}
|
||||
this.msg("Blocked all block edits for " + player2.getName());
|
||||
|
||||
msg(player2, "Your block edits have been blocked.", ChatColor.RED);
|
||||
msg("Blocked all block edits for " + player2.getName());
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user