mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-16 16:46:11 +00:00
38 lines
1.3 KiB
Java
38 lines
1.3 KiB
Java
package dev.plex.command.impl;
|
|
|
|
import com.google.common.collect.ImmutableList;
|
|
import dev.plex.command.PlexCommand;
|
|
import dev.plex.command.annotation.CommandParameters;
|
|
import dev.plex.command.annotation.CommandPermissions;
|
|
import dev.plex.command.exception.CommandArgumentException;
|
|
import dev.plex.rank.enums.Rank;
|
|
import dev.plex.util.PlexUtils;
|
|
import java.util.List;
|
|
import net.kyori.adventure.text.Component;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Player;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
@CommandParameters(name = "op", description = "Op a player on the server", usage = "/<command> <player>")
|
|
@CommandPermissions(level = Rank.OP)
|
|
public class OpCMD extends PlexCommand
|
|
{
|
|
@Override
|
|
public Component execute(CommandSender sender, String[] args)
|
|
{
|
|
if (args.length != 1)
|
|
{
|
|
throw new CommandArgumentException();
|
|
}
|
|
Player player = getNonNullPlayer(args[0]);
|
|
player.setOp(true);
|
|
PlexUtils.broadcast(tl("oppedPlayer", sender.getName(), player.getName()));
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public @NotNull List<String> tabComplete(@NotNull CommandSender sender, @NotNull String alias, @NotNull String[] args) throws IllegalArgumentException
|
|
{
|
|
return args.length == 1 ? PlexUtils.getPlayerNameList() : ImmutableList.of();
|
|
}
|
|
} |