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

134 lines
4.5 KiB
Java
Raw Normal View History

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.apache.commons.lang.ArrayUtils;
import org.apache.commons.lang.StringUtils;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
2020-09-28 03:17:01 +00:00
@CommandPermissions(level = Rank.ADMIN, source = SourceType.BOTH)
@CommandParameters(description = "Restricts/unrestricts block modification abilities for everyone on the server or a certain player.", usage = "/<command> [[-s] <player> [reason] | list | purge | all]")
public class Command_blockedit extends FreedomCommand
{
2017-12-23 04:07:36 +00:00
@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;
}
2017-12-23 04:07:36 +00:00
if (args[0].equals("list"))
{
msg("The following have block modification abilities restricted:");
int count = 0;
for (Player player : server.getOnlinePlayers())
2017-12-23 04:07:36 +00:00
{
final FPlayer info = plugin.pl.getPlayer(player);
2017-12-23 04:07:36 +00:00
if (info.isEditBlocked())
{
msg("- " + player.getName());
++count;
}
}
2017-12-23 04:07:36 +00:00
if (count == 0)
{
msg("- none");
}
return true;
}
2017-12-23 04:07:36 +00:00
if (args[0].equals("purge"))
{
FUtil.adminAction(sender.getName(), "Unblocking block modification abilities for all players", true);
int count = 0;
for (final Player player : this.server.getOnlinePlayers())
2017-12-23 04:07:36 +00:00
{
final FPlayer info = plugin.pl.getPlayer(player);
2017-12-23 04:07:36 +00:00
if (info.isEditBlocked())
{
info.setEditBlocked(false);
++count;
}
}
msg("Unblocked all block modification abilities for " + count + " players.");
return true;
}
2017-12-23 04:07:36 +00:00
if (args[0].equals("all"))
{
FUtil.adminAction(sender.getName(), "Blocking block modification abilities for all non-admins", true);
int counter = 0;
2017-12-23 04:07:36 +00:00
for (final Player player : this.server.getOnlinePlayers())
{
if (!plugin.al.isAdmin(player))
2017-12-23 04:07:36 +00:00
{
final FPlayer playerdata = plugin.pl.getPlayer(player);
playerdata.setEditBlocked(true);
++counter;
}
}
2017-12-23 04:07:36 +00:00
msg("Blocked block modification abilities for " + counter + " players.");
return true;
}
2017-12-23 04:07:36 +00:00
final boolean smite = args[0].equals("-s");
2017-12-23 04:07:36 +00:00
if (smite)
{
2020-04-23 11:18:03 +00:00
args = (String[])ArrayUtils.subarray(args, 1, args.length);
2017-12-23 04:07:36 +00:00
if (args.length < 1)
{
return false;
}
}
2017-12-23 04:07:36 +00:00
final Player player2 = getPlayer(args[0]);
if (player2 == null)
{
Right, so this change applies only to commands. For the sake of code consistency, I tried to change as many as possible to use `FreedomCommand.msg` instead of `CommandSender.sendMessage` for their messages. Here are a list of the files containing those changes: * Command_adminworld.java * Command_adventure.java * Command_banip.java * Command_blockedit.java * Command_blockpvp.java * Command_cage.java * Command_cartsit.java * Command_clearchat.java * Command_clearinventory.java * Command_commandlist.java * Command_creative.java * Command_deop.java * Command_deopall.java * Command_dispfill.java * Command_doom.java * Command_gcmd.java * Command_hubworld.java * Command_inspect.java * Command_list.java * Command_lockup.java * Command_manageshop.java * Command_manuallyverify.java * Command_masterbuilderworld.java * Command_mbconfig.java * Command_moblimiter.java * Command_mp44.java * Command_mute.java * Command_nickfilter.java * Command_op.java * Command_opall.java * Command_opme.java * Command_potion.java (Also corrected the inconsistent "player not found" message's color) * Command_rank.java * Command_ride.java * Command_saconfig.java * Command_scare.java * Command_setplayerlimit.java * Command_settotalvotes.java * Command_smite.java * Command_spectator.java * Command_survival.java * Command_unblockcmd.java * Command_uncage.java * Command_unmute.java * Command_verifynoadmin.java Here are some commands I added functionality to: * Command_dispfill.java: Added some code that hooks into the CoreProtect API to log the items being removed from and added into the dispensers. * Command_setlever.java: Added some code that hooks into the CoreProtect API to log the levers being interacted with. Here's a command I fixed a critical bug in: * Command_setlever.java
2021-04-05 23:13:26 +00:00
msg(PLAYER_NOT_FOUND);
return true;
}
2017-12-23 04:07:36 +00:00
String reason = null;
2017-12-23 04:07:36 +00:00
if (args.length > 1)
{
2020-04-23 11:18:03 +00:00
reason = StringUtils.join(args, " ", 1, args.length);
}
2017-12-23 04:07:36 +00:00
final FPlayer pd = plugin.pl.getPlayer(player2);
if (pd.isEditBlocked())
2017-12-23 04:07:36 +00:00
{
FUtil.adminAction(sender.getName(), "Unblocking block modification abilities for " + player2.getName(), true);
pd.setEditBlocked(false);
msg("Unblocking block modification abilities for " + player2.getName());
msg(player2, "Your block modification abilities have been restored.", ChatColor.RED);
}
2017-12-23 04:07:36 +00:00
else
{
if (plugin.al.isAdmin(player2))
2017-12-23 04:07:36 +00:00
{
msg(player2.getName() + " is an admin, and cannot have their block edits blocked.");
return true;
}
2017-12-23 04:07:36 +00:00
FUtil.adminAction(sender.getName(), "Blocking block modification abilities for " + player2.getName(), true);
pd.setEditBlocked(true);
2017-12-23 04:07:36 +00:00
if (smite)
{
Command_smite.smite(sender, player2, reason);
}
2017-12-23 04:07:36 +00:00
msg(player2, "Your block modification abilities have been blocked.", ChatColor.RED);
msg("Blocked all block modification abilities for " + player2.getName());
}
return true;
}
2020-08-15 16:35:48 +00:00
}