2011-06-08 16:32:37 +00:00
|
|
|
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];
|
|
|
|
}
|
2011-06-26 13:47:28 +00:00
|
|
|
String command = "permissions -reload "+world;
|
2011-06-20 21:07:45 +00:00
|
|
|
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
|
|
|
ess.getServer().dispatchCommand(sender, command);
|
2011-06-08 16:32:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|