mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-16 03:24:31 +02:00
Adding manload
This commit is contained in:
@@ -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+"");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user