From 55d4e0408eaee05575106bc31ad27cc2b26393da Mon Sep 17 00:00:00 2001 From: Steven Tracey <70534545+nevetS-718@users.noreply.github.com> Date: Tue, 28 Sep 2021 14:27:51 -0400 Subject: [PATCH] init New command --- .../java/tech/nevets/constelliabot/commands/CommandManager.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/tech/nevets/constelliabot/commands/CommandManager.java b/src/main/java/tech/nevets/constelliabot/commands/CommandManager.java index 0317f78..a9f1dc3 100644 --- a/src/main/java/tech/nevets/constelliabot/commands/CommandManager.java +++ b/src/main/java/tech/nevets/constelliabot/commands/CommandManager.java @@ -13,6 +13,7 @@ import tech.nevets.constelliabot.commands.pictures.DogCmd; import tech.nevets.constelliabot.commands.pictures.FoxCmd; import tech.nevets.constelliabot.commands.pictures.PandaCmd; import tech.nevets.constelliabot.commands.strings.GoodMorningCmd; +import tech.nevets.constelliabot.commands.strings.EbieKonRenCmd; import javax.annotation.Nullable; import java.util.ArrayList; @@ -30,6 +31,7 @@ public class CommandManager { addCommand(new DadJokeCmd()); addCommand(new DiceCmd()); addCommand(new DogCmd()); + addCommand(new EbieKonRenCmd()); addCommand(new FoxCmd()); addCommand(new GoodMorningCmd()); addCommand(new HelpCmd(this));