add coin flip command
Some checks failed
Deploy to Dokku / docker (ubuntu-latest) (push) Failing after 1m54s
Some checks failed
Deploy to Dokku / docker (ubuntu-latest) (push) Failing after 1m54s
This commit is contained in:
@ -3,6 +3,7 @@ package cc.fascinated.bat.features.base;
|
||||
import cc.fascinated.bat.features.Feature;
|
||||
import cc.fascinated.bat.features.FeatureProfile;
|
||||
import cc.fascinated.bat.features.base.commands.botadmin.BotAdminCommand;
|
||||
import cc.fascinated.bat.features.base.commands.fun.CoinFlipCommand;
|
||||
import cc.fascinated.bat.features.base.commands.fun.EightBallCommand;
|
||||
import cc.fascinated.bat.features.base.commands.fun.PPSizeCommand;
|
||||
import cc.fascinated.bat.features.base.commands.fun.image.ImageCommand;
|
||||
@ -47,5 +48,6 @@ public class BaseFeature extends Feature {
|
||||
super.registerCommand(commandService, context.getBean(LookupCommand.class));
|
||||
super.registerCommand(commandService, context.getBean(PPSizeCommand.class));
|
||||
super.registerCommand(commandService, context.getBean(PastebinCommand.class));
|
||||
super.registerCommand(commandService, context.getBean(CoinFlipCommand.class));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user