Fix bug with a few old commands that causes pagination to not work

This commit is contained in:
Logan Darklock 2019-09-02 19:50:14 -07:00
parent d1a0b735d9
commit 289971557a
No known key found for this signature in database
GPG Key ID: B8C37CEDE1AC60EA
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ public class HelpCommand extends Command {
}}); }});
}}; }};
}, },
FORCE_COMMAND_PREFIX + "help %d" FORCE_COMMAND_PREFIX + "help"
); );
} else { } else {
String commandName = args.getString().toLowerCase(); String commandName = args.getString().toLowerCase();

View File

@ -112,7 +112,7 @@ public class SetCommand extends Command {
getStyle().setColor(TextFormatting.DARK_GRAY); getStyle().setColor(TextFormatting.DARK_GRAY);
}}); }});
}}, }},
FORCE_COMMAND_PREFIX + "set " + arg + " " + search + " %d" FORCE_COMMAND_PREFIX + "set " + arg + " " + search
); );
return; return;