mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-04 11:36:24 +00:00
Adding manload
This commit is contained in:
parent
8136179e55
commit
5d925aa338
1 changed files with 29 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue