summaryrefslogtreecommitdiffstats
path: root/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/EssentialsPermissionsCommands.java
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-06-07 00:24:39 +0200
committersnowleo <schneeleo@gmail.com>2011-06-07 00:24:39 +0200
commit4f16c8b5a781b7df47ceaf239895c2ecec30ab53 (patch)
tree1e16f3097bef9b1a2db500be87e9cf365bcedcdc /EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/EssentialsPermissionsCommands.java
parenta45e620946c8e748b35258b7f8813d1c788bae37 (diff)
downloadEssentials-4f16c8b5a781b7df47ceaf239895c2ecec30ab53.tar
Essentials-4f16c8b5a781b7df47ceaf239895c2ecec30ab53.tar.gz
Essentials-4f16c8b5a781b7df47ceaf239895c2ecec30ab53.tar.lz
Essentials-4f16c8b5a781b7df47ceaf239895c2ecec30ab53.tar.xz
Essentials-4f16c8b5a781b7df47ceaf239895c2ecec30ab53.zip
Permissions 3.1.4
Added Code for Perm2, Perm3 and Config Permissions Cleaned EssentialsChat
Diffstat (limited to 'EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/EssentialsPermissionsCommands.java')
-rw-r--r--EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/EssentialsPermissionsCommands.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/EssentialsPermissionsCommands.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/EssentialsPermissionsCommands.java
new file mode 100644
index 000000000..f8af12f28
--- /dev/null
+++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/EssentialsPermissionsCommands.java
@@ -0,0 +1,26 @@
+package com.earth2me.essentials.permissions;
+
+import com.earth2me.essentials.Essentials;
+import org.bukkit.command.Command;
+import org.bukkit.command.CommandSender;
+import org.bukkit.plugin.java.JavaPlugin;
+
+
+public class EssentialsPermissionsCommands extends JavaPlugin
+{
+ @Override
+ public void onEnable()
+ {
+ }
+
+ @Override
+ public boolean onCommand(final CommandSender sender, final Command command, final String label, final String[] args)
+ {
+ return Essentials.getStatic().onCommandEssentials(sender, command, label, args, EssentialsPermissionsCommands.class.getClassLoader(), "com.earth2me.essentials.permissions.Command");
+ }
+
+ @Override
+ public void onDisable()
+ {
+ }
+}