add rotating presences

This commit is contained in:
Lee
2024-06-25 12:16:20 +01:00
parent e9422793cb
commit 0f2c684300
3 changed files with 17 additions and 8 deletions

View File

@ -3,7 +3,7 @@ package cc.fascinated.bat.service;
import cc.fascinated.bat.command.BatCommand;
import cc.fascinated.bat.command.BatSubCommand;
import cc.fascinated.bat.common.EmbedUtils;
import cc.fascinated.bat.features.scoresaber.command.numberone.NunberOneFeedCommand;
import cc.fascinated.bat.features.scoresaber.command.numberone.NumberOneFeedCommand;
import cc.fascinated.bat.features.scoresaber.command.scoresaber.ScoreSaberCommand;
import cc.fascinated.bat.features.scoresaber.command.userfeed.UserFeedCommand;
import cc.fascinated.bat.model.BatGuild;
@ -52,7 +52,7 @@ public class CommandService extends ListenerAdapter {
// Guild commands
registerCommand(context.getBean(UserFeedCommand.class));
registerCommand(context.getBean(NunberOneFeedCommand.class));
registerCommand(context.getBean(NumberOneFeedCommand.class));
// Global commands
registerCommand(context.getBean(ScoreSaberCommand.class));