diff options
author | snowleo <schneeleo@gmail.com> | 2011-06-07 00:24:39 +0200 |
---|---|---|
committer | snowleo <schneeleo@gmail.com> | 2011-06-07 00:24:39 +0200 |
commit | 4f16c8b5a781b7df47ceaf239895c2ecec30ab53 (patch) | |
tree | 1e16f3097bef9b1a2db500be87e9cf365bcedcdc /EssentialsPermissionsCommands/src/com/earth2me/essentials | |
parent | a45e620946c8e748b35258b7f8813d1c788bae37 (diff) | |
download | Essentials-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')
2 files changed, 48 insertions, 0 deletions
diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanuadd.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanuadd.java new file mode 100644 index 000000000..1f41b890a --- /dev/null +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanuadd.java @@ -0,0 +1,22 @@ +package com.earth2me.essentials.permissions; + +import com.earth2me.essentials.commands.EssentialsCommand; +import org.bukkit.Server; +import org.bukkit.command.CommandSender; + + +public class Commandmanuadd extends EssentialsCommand +{ + public Commandmanuadd() + { + super("manuadd"); + } + + @Override + protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception + { + + } + + +} 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() + { + } +} |