summaryrefslogtreecommitdiffstats
path: root/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java
diff options
context:
space:
mode:
authorKhyperia <khyperia@live.com>2011-11-30 20:30:21 -0500
committerKhyperia <khyperia@live.com>2011-11-30 20:30:21 -0500
commitdde8595c517de30653fa7d73a8b3d90d36b3ac81 (patch)
tree474bc5df8078aef0bbcb06d34b64943c780a7b5f /EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java
parent3c9f0db3d49b314dcd6ac2005205940e805b3e0b (diff)
parent909e5bd3f8b0f251806033fdda025b7717f7e823 (diff)
downloadEssentials-dde8595c517de30653fa7d73a8b3d90d36b3ac81.tar
Essentials-dde8595c517de30653fa7d73a8b3d90d36b3ac81.tar.gz
Essentials-dde8595c517de30653fa7d73a8b3d90d36b3ac81.tar.lz
Essentials-dde8595c517de30653fa7d73a8b3d90d36b3ac81.tar.xz
Essentials-dde8595c517de30653fa7d73a8b3d90d36b3ac81.zip
Updating to latest
Diffstat (limited to 'EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java')
-rw-r--r--EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java
deleted file mode 100644
index 24ffe2307..000000000
--- a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdel.java
+++ /dev/null
@@ -1,30 +0,0 @@
-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];
- String command = "permissions g:"+group+" delete";
- sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
- ess.getServer().dispatchCommand(sender, command);
- }
-
-
-}