forked from Fascinated/Bat
fix help command
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user