mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-02 17:09:58 +01:00
88ded926f4
onCommand now supports the change of the permissions prefix
32 lines
827 B
Java
32 lines
827 B
Java
package com.earth2me.essentials.permissions;
|
|
|
|
import com.earth2me.essentials.commands.EssentialsCommand;
|
|
import com.earth2me.essentials.commands.NotEnoughArgumentsException;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
|
|
public class Commandmanudelp extends EssentialsCommand
|
|
{
|
|
public Commandmanudelp()
|
|
{
|
|
super("manudelp");
|
|
}
|
|
|
|
@Override
|
|
protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
|
|
{
|
|
if (args.length < 2)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
final String player = args[0];
|
|
final String perm = args[1];
|
|
String command = "permissions "+player+" perms remove "+perm;
|
|
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
|
ess.getServer().dispatchCommand(sender, command);
|
|
}
|
|
|
|
|
|
}
|