summaryrefslogtreecommitdiffstats
path: root/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdeli.java
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-11-30 23:51:41 +0100
committersnowleo <schneeleo@gmail.com>2011-11-30 23:51:41 +0100
commit40220960f5286d82b43f31192594488fb505ee09 (patch)
treebfcca57484038fbc59915405b433671c44737c86 /EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdeli.java
parent3c9f0db3d49b314dcd6ac2005205940e805b3e0b (diff)
downloadEssentials-40220960f5286d82b43f31192594488fb505ee09.tar
Essentials-40220960f5286d82b43f31192594488fb505ee09.tar.gz
Essentials-40220960f5286d82b43f31192594488fb505ee09.tar.lz
Essentials-40220960f5286d82b43f31192594488fb505ee09.tar.xz
Essentials-40220960f5286d82b43f31192594488fb505ee09.zip
We don't need that anymore.
Diffstat (limited to 'EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdeli.java')
-rw-r--r--EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdeli.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdeli.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdeli.java
deleted file mode 100644
index aea296735..000000000
--- a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmangdeli.java
+++ /dev/null
@@ -1,31 +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 Commandmangdeli extends EssentialsCommand
-{
- public Commandmangdeli()
- {
- super("mangdeli");
- }
-
- @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 group = args[1];
- String command = "permissions g:"+target+" parents remove "+group;
- sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
- ess.getServer().dispatchCommand(sender, command);
- }
-
-
-}