diff --git a/src/main/java/tech/nevets/constelliabot/commands/strings/EbieKonRenCmd b/src/main/java/tech/nevets/constelliabot/commands/strings/EbieKonRenCmd new file mode 100644 index 0000000..4ca2ed5 --- /dev/null +++ b/src/main/java/tech/nevets/constelliabot/commands/strings/EbieKonRenCmd @@ -0,0 +1,33 @@ +package tech.nevets.constelliabot.commands.strings; + +import tech.nevets.constelliabot.Bot; +import tech.nevets.constelliabot.commands.CommandContext; +import tech.nevets.constelliabot.commands.ICommand; + +import java.util.List; + +public class GoodMorningCmd implements ICommand { + + @Override + public void handle(CommandContext ctx) { + ctx.getChannel().sendTyping().queue(); + ctx.getChannel().sendMessage("Hmm I wonder what this command does?").queue(); + ctx.getChannel().sendMessage("-EbieKonRen").queue(); + } + + @Override + public String getName() { + return "ebiekonren"; + } + + @Override + public String getHelp() { + return "Sends a good morning message\n" + + "Usage: `" + Bot.prefix + "ebiekonren`"; + } + + @Override + public List getAliases() { + return List.of("cmd", "ebie", "everycommand"); + } +}