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/Commandmanload.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/Commandmanload.java')
-rw-r--r-- | EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanload.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanload.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanload.java index 3e1803233..390cb78eb 100644 --- a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanload.java +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanload.java @@ -21,7 +21,7 @@ public class Commandmanload extends EssentialsCommand { world = args[0]; } - String command = "/permissions -reload "+world; + String command = "permissions -reload "+world; sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead."); ess.getServer().dispatchCommand(sender, command); } |