summaryrefslogtreecommitdiffstats
path: root/EssentialsXMPP/src/com/earth2me/essentials/xmpp
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
commit34db81cc514ff577d6018faacea8ff094e83501c (patch)
tree7776c8afd05d932695b229ac6da96b2ba6bbc1e9 /EssentialsXMPP/src/com/earth2me/essentials/xmpp
parentd668466c59238e554a3ecc297fcec505efe397f9 (diff)
downloadEssentials-34db81cc514ff577d6018faacea8ff094e83501c.tar
Essentials-34db81cc514ff577d6018faacea8ff094e83501c.tar.gz
Essentials-34db81cc514ff577d6018faacea8ff094e83501c.tar.lz
Essentials-34db81cc514ff577d6018faacea8ff094e83501c.tar.xz
Essentials-34db81cc514ff577d6018faacea8ff094e83501c.zip
Corrected all commands of PermCommands
onCommand now supports the change of the permissions prefix
Diffstat (limited to 'EssentialsXMPP/src/com/earth2me/essentials/xmpp')
-rw-r--r--EssentialsXMPP/src/com/earth2me/essentials/xmpp/EssentialsXMPP.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/EssentialsXMPP.java b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/EssentialsXMPP.java
index a2ee7bed1..27988f11a 100644
--- a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/EssentialsXMPP.java
+++ b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/EssentialsXMPP.java
@@ -65,7 +65,7 @@ public class EssentialsXMPP extends JavaPlugin implements IEssentialsXMPP
@Override
public boolean onCommand(final CommandSender sender, final Command command, final String commandLabel, final String[] args)
{
- return Essentials.getStatic().onCommandEssentials(sender, command, commandLabel, args, EssentialsXMPP.class.getClassLoader(), "com.earth2me.essentials.xmpp.Command");
+ return Essentials.getStatic().onCommandEssentials(sender, command, commandLabel, args, EssentialsXMPP.class.getClassLoader(), "com.earth2me.essentials.xmpp.Command", "essentials.");
}
@Override