fix help cmd
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 54s

This commit is contained in:
Lee 2024-07-05 23:24:36 +01:00
parent 4aae21b594
commit 07c5a7358b
2 changed files with 2 additions and 2 deletions

@ -135,7 +135,7 @@ public class HelpCommand extends BatCommand implements EventListener {
%s
*View our [TOS](%s) and [Privacy Policy](%s) for more information.*
""".formatted(
!ranInsideGuild ? "\n*guild only commands won't be shown here" : "",
!ranInsideGuild ? "\n*guild only commands won't be shown here*" : "",
categories.toString(),
Consts.TERMS_OF_SERVICE_URL,
Consts.PRIVACY_POLICY_URL

@ -140,7 +140,7 @@ public class CommandService extends ListenerAdapter {
public List<BatCommand> getCommandsByCategory(Category category, boolean includeGuildCommands) {
List<BatCommand> commands = new ArrayList<>();
for (BatCommand command : this.commands.values()) {
if (command.getInfo().getCategory() == category && (includeGuildCommands || !command.getInfo().isGuildOnly())) {
if (command.getInfo().getCategory() == category && (includeGuildCommands || command.getInfo().isUserInstall())) {
commands.add(command);
}
}