mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-22 08:25:12 +00:00
29 lines
667 B
Java
29 lines
667 B
Java
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+"");
|
|
}
|
|
|
|
|
|
}
|