mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-16 00:33:32 +00:00
57dbafb385
- exceptions used now - use CommandSource over CommandSender as it will generally be more versatile
33 lines
1020 B
Java
33 lines
1020 B
Java
package me.totalfreedom.plex.command.impl;
|
|
|
|
import me.totalfreedom.plex.command.annotation.CommandParameters;
|
|
import me.totalfreedom.plex.command.annotation.CommandPermissions;
|
|
import me.totalfreedom.plex.command.PlexCommand;
|
|
import me.totalfreedom.plex.command.source.CommandSource;
|
|
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 = "/<command>", aliases = "plexhelp", description = "Help with plex")
|
|
public class PlexCMD extends PlexCommand
|
|
{
|
|
public PlexCMD() {
|
|
super("plex");
|
|
}
|
|
|
|
@Override
|
|
public void execute(CommandSource sender, String[] args)
|
|
{
|
|
send("HI");
|
|
}
|
|
|
|
@Override
|
|
public List<String> onTabComplete(CommandSource sender, String[] args) {
|
|
return Arrays.asList("Telesphoreo", "super", "Taahh");
|
|
}
|
|
}
|