Make SearchCommand autocomplete more helpful

This commit is contained in:
Dominika 2020-05-11 18:17:11 -04:00 committed by GitHub
parent 67b2923492
commit 1f19ae9c82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ import static me.zeroeightsix.kami.util.MessageSendHelper.*;
*/
public class SearchCommand extends Command {
public SearchCommand() {
super("search", new ChunkBuilder().append("command", true, new EnumParser(new String[]{"help", "+", "-", "=", "list", "defaults", "clear"})).build());
super("search", new ChunkBuilder().append("command", true, new EnumParser(new String[]{"help", "+block", "-block", "=block", "list", "defaults", "clear"})).build());
setDescription("Allows you to add or remove blocks from the &fSearch &7module");
}