This commit is contained in:
Lee 2025-01-06 05:20:05 +00:00
parent d3661127cf
commit b78ef6e96c

View File

@ -1,5 +1,6 @@
package cc.fascinated.bat.base;
import cc.fascinated.bat.base.commands.fun.HowGayCommand;
import cc.fascinated.bat.common.feature.Feature;
import cc.fascinated.bat.common.feature.FeatureProfile;
import cc.fascinated.bat.base.commands.botadmin.BotAdminCommand;
@ -49,5 +50,6 @@ public class BaseFeature extends Feature {
super.registerCommand(commandService, context.getBean(PPSizeCommand.class));
super.registerCommand(commandService, context.getBean(PastebinCommand.class));
super.registerCommand(commandService, context.getBean(CoinFlipCommand.class));
super.registerCommand(commandService, context.getBean(HowGayCommand.class));
}
}