mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-06 11:00:43 +01:00
Adding manload
This commit is contained in:
parent
8136179e55
commit
5d925aa338
@ -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+"");
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user