mirror of
https://github.com/essentials/Essentials.git
synced 2025-10-01 00:26:48 +02:00
30 lines
720 B
Java
30 lines
720 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 Commandmangdelp extends EssentialsCommand
|
|
{
|
|
public Commandmangdelp()
|
|
{
|
|
super("mangdelp");
|
|
}
|
|
|
|
@Override
|
|
protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
|
|
{
|
|
if (args.length < 2)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
final String target = args[0];
|
|
final String perm = args[1];
|
|
ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" perms remove "+perm+"");
|
|
}
|
|
|
|
|
|
}
|