make the help command better

This commit is contained in:
Lee
2024-06-27 16:24:08 +01:00
parent a7c3e2d745
commit 50b921c66d
7 changed files with 41 additions and 6 deletions

View File

@ -18,6 +18,6 @@ public class AutoRoleFeature extends Feature {
public AutoRoleFeature(@NonNull ApplicationContext context, @NonNull CommandService commandService) {
super("AutoRole", Category.SERVER);
commandService.registerCommand(context.getBean(AutoRoleCommand.class));
registerCommand(commandService, context.getBean(AutoRoleCommand.class));
}
}

View File

@ -20,7 +20,7 @@ public class BirthdayFeature extends Feature {
private final GuildService guildService;
public BirthdayFeature(@NonNull ApplicationContext context, @NonNull CommandService commandService, @NonNull GuildService guildService) {
super("Birthday", Category.GENERAL);
super("Birthday", Category.UTILITY);
this.guildService = guildService;
registerCommand(commandService, context.getBean(BirthdayCommand.class));