summaryrefslogtreecommitdiffstats
path: root/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java
diff options
context:
space:
mode:
authorKHobbits <KHobbits@KHobbits-PC>2011-06-08 17:20:51 +0100
committerKHobbits <KHobbits@KHobbits-PC>2011-06-08 17:20:51 +0100
commitb3afc15d5f17ca2996d044d3f27ee329b6640c0f (patch)
treeda2932b14cc5cbe2adb768e0faa7cfb4050aefde /EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java
parent685e9ce76f2157bf350a7726405c01c8e3c1b3e0 (diff)
downloadEssentials-b3afc15d5f17ca2996d044d3f27ee329b6640c0f.tar
Essentials-b3afc15d5f17ca2996d044d3f27ee329b6640c0f.tar.gz
Essentials-b3afc15d5f17ca2996d044d3f27ee329b6640c0f.tar.lz
Essentials-b3afc15d5f17ca2996d044d3f27ee329b6640c0f.tar.xz
Essentials-b3afc15d5f17ca2996d044d3f27ee329b6640c0f.zip
Adding some GM aliases
Diffstat (limited to 'EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java')
-rw-r--r--EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java
new file mode 100644
index 000000000..39f0867ce
--- /dev/null
+++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.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 Commandmanudel extends EssentialsCommand
+{
+ public Commandmanudel()
+ {
+ super("manudel");
+ }
+
+ @Override
+ protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
+ {
+ if (args.length < 1)
+ {
+ throw new NotEnoughArgumentsException();
+ }
+ final String player = args[0];
+ ess.getServer().dispatchCommand(sender, "/permissions "+player+" delete");
+ }
+
+
+}