From aa1e0cdc593f666763e932d42d1edacc7a44d73e Mon Sep 17 00:00:00 2001 From: KHobbits Date: Wed, 8 Jun 2011 17:41:48 +0100 Subject: Adding group permission alias --- .../essentials/permissions/Commandmanglistp.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanglistp.java (limited to 'EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanglistp.java') diff --git a/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanglistp.java b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanglistp.java new file mode 100644 index 000000000..190466cd7 --- /dev/null +++ b/EssentialsPermissionsCommands/src/com/earth2me/essentials/permissions/Commandmanglistp.java @@ -0,0 +1,28 @@ +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 Commandmanglistp extends EssentialsCommand +{ + public Commandmanglistp() + { + super("manglistp"); + } + + @Override + protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception + { + if (args.length < 1) + { + throw new NotEnoughArgumentsException(); + } + final String target = args[0]; + ess.getServer().dispatchCommand(sender, "/permissions g:"+target+" perms list"); + } + + +} -- cgit v1.2.3