Adds tab completion for the reload command

This commit is contained in:
Kristian Knarvik 2021-09-08 15:31:53 +02:00
parent c44f64e42b
commit 58c8f76984

View File

@ -2,13 +2,16 @@ package net.knarcraft.bookswithoutborders.command;
import net.knarcraft.bookswithoutborders.BooksWithoutBorders; import net.knarcraft.bookswithoutborders.BooksWithoutBorders;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
import org.bukkit.command.TabExecutor;
import java.util.ArrayList;
import java.util.List;
/** /**
* Command executor for the reload command * Command executor for the reload command
*/ */
public class CommandReload implements CommandExecutor { public class CommandReload implements TabExecutor {
private final BooksWithoutBorders booksWithoutBorders = BooksWithoutBorders.getInstance(); private final BooksWithoutBorders booksWithoutBorders = BooksWithoutBorders.getInstance();
@ -23,4 +26,8 @@ public class CommandReload implements CommandExecutor {
return true; return true;
} }
@Override
public List<String> onTabComplete(CommandSender sender, Command command, String alias, String[] args) {
return new ArrayList<>();
}
} }