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