diff options
author | snowleo <schneeleo@gmail.com> | 2011-06-26 15:47:28 +0200 |
---|---|---|
committer | snowleo <schneeleo@gmail.com> | 2011-06-26 15:47:28 +0200 |
commit | 88ded926f49deed78fb6d238661f3c900483b0a6 (patch) | |
tree | 0a7b82c3ff5eae3d75f3cfb09069423da67475d5 /EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java | |
parent | 3b9a07e560d5b486680643c4919c2ffa4076f6eb (diff) | |
download | Essentials-88ded926f49deed78fb6d238661f3c900483b0a6.tar Essentials-88ded926f49deed78fb6d238661f3c900483b0a6.tar.gz Essentials-88ded926f49deed78fb6d238661f3c900483b0a6.tar.lz Essentials-88ded926f49deed78fb6d238661f3c900483b0a6.tar.xz Essentials-88ded926f49deed78fb6d238661f3c900483b0a6.zip |
Corrected all commands of PermCommands
onCommand now supports the change of the permissions prefix
Diffstat (limited to 'EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java')
-rw-r--r-- | EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java index 9e117ac21..72c8fc2af 100644 --- a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanudel.java @@ -21,7 +21,7 @@ public class Commandmanudel extends EssentialsCommand throw new NotEnoughArgumentsException(); } final String player = args[0]; - String command = "/permissions "+player+" delete"; + String command = "permissions "+player+" delete"; sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead."); ess.getServer().dispatchCommand(sender, command); } |