mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-15 05:33:40 +00:00
31 lines
834 B
Java
31 lines
834 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 Commandmanuaddsub extends EssentialsCommand
|
|
{
|
|
public Commandmanuaddsub()
|
|
{
|
|
super("manuaddsub");
|
|
}
|
|
|
|
@Override
|
|
protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
|
|
{
|
|
if (args.length < 2)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
final String player = args[0];
|
|
final String group = args[1];
|
|
String command = "permissions "+player+" parents add "+group;
|
|
sender.sendMessage(commandLabel + " is deprecated. Use " + command + " instead.");
|
|
ess.getServer().dispatchCommand(sender, command);
|
|
}
|
|
|
|
|
|
}
|