Add 'paste' to verbose command tab completions (#3598)

This commit is contained in:
Glare 2023-03-01 17:29:35 -06:00 committed by GitHub
parent 1f8b66cfe3
commit 4037570fbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -186,7 +186,7 @@ public class VerboseCommand extends SingleCommand {
@Override
public List<String> tabComplete(LuckPermsPlugin plugin, Sender sender, ArgumentList args) {
return TabCompleter.create()
.at(0, CompletionSupplier.startsWith("on", "record", "off", "upload", "command"))
.at(0, CompletionSupplier.startsWith("on", "record", "off", "upload", "paste", "command"))
.complete(args);
}
}