mirror of
https://github.com/Freezy-Studios/BlazeSMP.git
synced 2025-04-21 19:44:05 +02:00
Added TabCompleter to ClaimCommand.java!
This commit is contained in:
parent
423fb5e6b3
commit
5f5b50f454
1 changed files with 3 additions and 0 deletions
|
@ -88,6 +88,9 @@ public class ClaimCommand extends SimpleCommand {
|
|||
|
||||
@Override
|
||||
public @Nullable List<String> onTabComplete(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args) {
|
||||
if (args.length == 1) {
|
||||
return List.of("see");
|
||||
}
|
||||
return List.of();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue