summaryrefslogtreecommitdiffstats
path: root/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-06-11 13:03:10 +0200
committersnowleo <schneeleo@gmail.com>2011-06-11 13:03:10 +0200
commit2e6062fcb8e98b61b6bf81fc6418729fc7b39c27 (patch)
treea3ea3b5662d3b01578191e066605f1dc37fd6046 /EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java
parent57c913c91666ef16ddcb5c979fe7fcffd255ab16 (diff)
parent3f736d97133753df4fb36bc024f90d58445fffb2 (diff)
downloadEssentials-2e6062fcb8e98b61b6bf81fc6418729fc7b39c27.tar
Essentials-2e6062fcb8e98b61b6bf81fc6418729fc7b39c27.tar.gz
Essentials-2e6062fcb8e98b61b6bf81fc6418729fc7b39c27.tar.lz
Essentials-2e6062fcb8e98b61b6bf81fc6418729fc7b39c27.tar.xz
Essentials-2e6062fcb8e98b61b6bf81fc6418729fc7b39c27.zip
Merge branch 'master' of https://github.com/essentials/Essentials
Diffstat (limited to 'EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java')
-rw-r--r--EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java
new file mode 100644
index 000000000..2a4bc6548
--- /dev/null
+++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanucheckp.java
@@ -0,0 +1,29 @@
+package com.earth2me.essentials.permissions;
+
+import com.earth2me.essentials.commands.EssentialsCommand;
+import com.earth2me.essentials.commands.NotEnoughArgumentsException;
+import org.bukkit.Server;
+import org.bukkit.command.CommandSender;
+
+
+public class Commandmanucheckp extends EssentialsCommand
+{
+ public Commandmanucheckp()
+ {
+ super("manucheckp");
+ }
+
+ @Override
+ protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
+ {
+ if (args.length < 2)
+ {
+ throw new NotEnoughArgumentsException();
+ }
+ final String player = args[0];
+ final String perm = args[1];
+ ess.getServer().dispatchCommand(sender, "/permissions "+player+" has "+perm+"");
+ }
+
+
+}