mirror of
https://github.com/Zrips/Jobs.git
synced 2024-11-29 14:05:25 +01:00
Fix for tabcomplete
This commit is contained in:
parent
fd9afd5a55
commit
8aafd9f903
@ -22,13 +22,14 @@ import com.gamingmesh.jobs.container.JobProgression;
|
|||||||
import com.gamingmesh.jobs.container.JobsPlayer;
|
import com.gamingmesh.jobs.container.JobsPlayer;
|
||||||
|
|
||||||
public class TabComplete implements TabCompleter {
|
public class TabComplete implements TabCompleter {
|
||||||
|
public TabComplete() {
|
||||||
|
Debug.D("created tab complete");
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<String> onTabComplete(CommandSender sender, Command command, String label, String[] args) {
|
public List<String> onTabComplete(CommandSender sender, Command command, String label, String[] args) {
|
||||||
List<String> completionList = new ArrayList<>();
|
|
||||||
|
|
||||||
if (!args[0].equalsIgnoreCase("jobs"))
|
List<String> completionList = new ArrayList<>();
|
||||||
return Collections.emptyList();
|
|
||||||
|
|
||||||
if (args.length == 1) {
|
if (args.length == 1) {
|
||||||
String PartOfCommand = args[0];
|
String PartOfCommand = args[0];
|
||||||
|
Loading…
Reference in New Issue
Block a user