This commit is contained in:
kento2 2026-04-29 17:46:44 +02:00
parent 6a725005f0
commit b4c1e242c8
9 changed files with 79 additions and 7 deletions

View file

@ -7,6 +7,7 @@ import org.bukkit.command.CommandSender;
import org.jetbrains.annotations.NotNull;
import java.util.Arrays;
import java.util.List;
public class BukkitKenCommand extends Command {
@ -21,6 +22,12 @@ public class BukkitKenCommand extends Command {
this.rootNode = rootNode;
this.commandManager = commandManager;
this.setAliases(Arrays.asList(rootNode.getNames()));
this.setPermission(rootNode.getPermission());
}
@Override
public @NotNull List<String> tabComplete(@NotNull CommandSender sender, @NotNull String alias, @NotNull String[] args) throws IllegalArgumentException {
}
@Override