summaryrefslogtreecommitdiffstats
path: root/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanuaddp.java
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-06-26 15:47:28 +0200
committersnowleo <schneeleo@gmail.com>2011-06-26 15:47:28 +0200
commit88ded926f49deed78fb6d238661f3c900483b0a6 (patch)
tree0a7b82c3ff5eae3d75f3cfb09069423da67475d5 /EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanuaddp.java
parent3b9a07e560d5b486680643c4919c2ffa4076f6eb (diff)
downloadEssentials-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/Commandmanuaddp.java')
-rw-r--r--EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanuaddp.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanuaddp.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanuaddp.java
index 676631c63..3d3d67c72 100644
--- a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanuaddp.java
+++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanuaddp.java
@@ -22,7 +22,7 @@ public class Commandmanuaddp extends EssentialsCommand
}
final String player = args[0];
final String perm = args[1];
- String command = "/permissions "+player+" perms add "+perm;
+ String command = "permissions "+player+" perms add "+perm;
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
ess.getServer().dispatchCommand(sender, command);
}