package me.totalfreedom.plex.command.impl; import com.google.common.collect.ImmutableList; import me.totalfreedom.plex.command.annotations.CommandParameters; import me.totalfreedom.plex.command.annotations.CommandPermissions; import me.totalfreedom.plex.command.PlexCommand; import me.totalfreedom.plex.command.source.RequiredCommandSource; import me.totalfreedom.plex.rank.enums.Rank; import org.bukkit.command.CommandSender; import java.util.Arrays; import java.util.List; @CommandPermissions(level = Rank.OP, source = RequiredCommandSource.ANY) @CommandParameters(usage = "/", aliases = "tst,tast", description = "HELLO") public class TestCMD extends PlexCommand { public TestCMD() { super("test"); } @Override public void execute(CommandSender sender, String[] args) { sender.sendMessage("HIIII BICH"); } @Override public List onTabComplete(CommandSender sender, String[] args) { if (args.length == 1) { return Arrays.asList("WHATTHEFAWK", "LUL"); } return ImmutableList.of(); } }