mirror of
https://github.com/essentials/Essentials.git
synced 2025-10-01 00:26:48 +02:00
31 lines
785 B
Java
31 lines
785 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 Commandmangadd extends EssentialsCommand
|
|
{
|
|
public Commandmangadd()
|
|
{
|
|
super("mangadd");
|
|
}
|
|
|
|
@Override
|
|
protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
|
|
{
|
|
if (args.length < 1)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
final String group = args[0];
|
|
String command = "permissions g:" + group + " create";
|
|
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
|
ess.getServer().dispatchCommand(sender, command);
|
|
}
|
|
|
|
|
|
}
|