From b3afc15d5f17ca2996d044d3f27ee329b6640c0f Mon Sep 17 00:00:00 2001 From: KHobbits Date: Wed, 8 Jun 2011 17:20:51 +0100 Subject: Adding some GM aliases --- .../essentials/permissions/Commandmangdel.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java (limited to 'EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java') diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java new file mode 100644 index 000000000..32126c564 --- /dev/null +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java @@ -0,0 +1,28 @@ +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 Commandmangdel extends EssentialsCommand +{ + public Commandmangdel() + { + super("mangdel"); + } + + @Override + protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception + { + if (args.length < 1) + { + throw new NotEnoughArgumentsException(); + } + final String group = args[0]; + ess.getServer().dispatchCommand(sender, "/permissions g:"+group+" delete"); + } + + +} -- cgit v1.2.3