Merge pull request #11 from Freezy-Studios/dev

Added TabCompleter to ClaimCommand.java!
This commit is contained in:
DaTTV 2025-02-18 19:31:05 +01:00 committed by GitHub
commit edcd674090
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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();
}
}