mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-16 20:36:12 +00:00
521825024e
Signed-off-by: Robinson Gallego <robinson.leal7@gmail.com>
63 lines
1.9 KiB
Java
63 lines
1.9 KiB
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
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;
|
|
|
|
@CommandPermissions(level = Rank.SUPER_ADMIN, source = SourceType.BOTH, blockHostConsole = true)
|
|
@CommandParameters(description = "Run any command on all users, username placeholder = ?.", usage = "/<command> [fluff] ? [fluff] ?")
|
|
public class Command_wildcard extends FreedomCommand
|
|
{
|
|
|
|
public static final List<String> BLOCKED_COMMANDS = Arrays.asList(
|
|
"wildcard",
|
|
"gtfo",
|
|
"doom",
|
|
"saconfig"
|
|
);
|
|
|
|
@Override
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
{
|
|
if (args.length == 0)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
Command runCmd = server.getPluginCommand(args[0]);
|
|
if (runCmd == null)
|
|
{
|
|
msg("Unknown command: " + args[0], ChatColor.RED);
|
|
return true;
|
|
}
|
|
|
|
if (BLOCKED_COMMANDS.contains(runCmd.getName()))
|
|
{
|
|
msg("Did you really think that was going to work?", ChatColor.RED);
|
|
return true;
|
|
}
|
|
|
|
String baseCommand = StringUtils.join(args, " ");
|
|
|
|
if (plugin.cb.isCommandBlocked(baseCommand, sender))
|
|
{
|
|
// CommandBlocker handles messages and broadcasts
|
|
return true;
|
|
}
|
|
|
|
for (Player player : server.getOnlinePlayers())
|
|
{
|
|
String runCommand = baseCommand.replaceAll("\\x3f", player.getName());
|
|
msg("Running Command: " + runCommand);
|
|
server.dispatchCommand(sender, runCommand);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|