fix help command

This commit is contained in:
Lee
2024-06-27 21:21:56 +01:00
parent deb656086a
commit ff5b83f531
3 changed files with 21 additions and 4 deletions

View File

@ -81,7 +81,6 @@ public class CommandService extends ListenerAdapter {
log.info("Unregistered hidden command \"{}\" from Discord", command.getName());
return;
}
if (commands.containsKey(command.getName())) {
return;
}
@ -118,7 +117,7 @@ public class CommandService extends ListenerAdapter {
* @return The commands
*/
public List<BatCommand> getCommandsByCategory(Category category, boolean hideHiddenCategories) {
return commands.values().stream().filter(command -> command.getCategory() == category && (hideHiddenCategories && category.isHidden())).toList();
return commands.values().stream().filter(command -> command.getCategory() == category && (hideHiddenCategories && !category.isHidden())).toList();
}
@Override