From f9f644d91a554363450cad9bb88ae0e762f89da3 Mon Sep 17 00:00:00 2001 From: Steven Tracey <70534545+nevetS-718@users.noreply.github.com> Date: Tue, 28 Sep 2021 14:26:32 -0400 Subject: [PATCH] [CI-SKIP] Add ebiekonren cmd --- .../commands/strings/EbieKonRenCmd | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/main/java/tech/nevets/constelliabot/commands/strings/EbieKonRenCmd 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"); + } +}