Adding manload

This commit is contained in:
KHobbits 2011-06-08 17:32:37 +01:00
parent 8136179e55
commit 5d925aa338

View file

@ -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 Commandmanload extends EssentialsCommand
{
public Commandmanload()
{
super("manload");
}
@Override
protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
{
String world = "all";
if (args.length > 1)
{
world = args[0];
}
ess.getServer().dispatchCommand(sender, "/permissions -reload "+world+"");
}
}