mirror of
https://github.com/Freezy-Studios/BlazeSMP.git
synced 2025-04-21 21:14:04 +02:00
Merge pull request #11 from Freezy-Studios/dev
Added TabCompleter to ClaimCommand.java!
This commit is contained in:
commit
edcd674090
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