From 58874b200d1b087ef83682110aaa2f2c9b3d8bbc Mon Sep 17 00:00:00 2001 From: Steven Tracey <70534545+nevetS-718@users.noreply.github.com> Date: Wed, 29 Sep 2021 15:04:17 -0400 Subject: [PATCH] add blue cmd --- .../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 1dc2441..f292492 100644 --- a/src/main/java/tech/nevets/constelliabot/commands/CommandManager.java +++ b/src/main/java/tech/nevets/constelliabot/commands/CommandManager.java @@ -15,6 +15,7 @@ import tech.nevets.constelliabot.commands.pictures.PandaCmd; import tech.nevets.constelliabot.commands.strings.GoodMorningCmd; import tech.nevets.constelliabot.commands.strings.EbieKonRenCmd; import tech.nevets.constelliabot.commands.strings.JangoTheSovietCmd; +import tech.nevets.constelliabot.commands.strings.BlueSpruceCmd; import javax.annotation.Nullable; import java.util.ArrayList; @@ -27,6 +28,7 @@ public class CommandManager { public CommandManager() { //Add to this list in alphabetical order + addCommand(new BlueSpruceCmd()); addCommand(new CatCmd()); addCommand(new CoinFlipCmd()); addCommand(new DadJokeCmd());