From bc2193cd6d5da0b3bea9e67cd5503cd8594fea0d Mon Sep 17 00:00:00 2001 From: alexg Date: Sun, 13 Nov 2022 17:11:10 -0500 Subject: [PATCH] Remove fallback response. --- .../salmonllama/fsbot/commands/staff/AddColorCommand.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/dev/salmonllama/fsbot/commands/staff/AddColorCommand.java b/src/main/java/dev/salmonllama/fsbot/commands/staff/AddColorCommand.java index 6cef239..168f4c0 100644 --- a/src/main/java/dev/salmonllama/fsbot/commands/staff/AddColorCommand.java +++ b/src/main/java/dev/salmonllama/fsbot/commands/staff/AddColorCommand.java @@ -19,8 +19,8 @@ public class AddColorCommand extends Command { @Override public void onCommand(CommandContext ctx) { - ctx.getApi().getOwner().thenAcceptAsync(owner -> { - ctx.reply("This command is no longer active. An alternative is currently being developed. For more information, please contact " + owner.getDiscriminatedName()); - }); +// ctx.getApi().getOwner().thenAcceptAsync(owner -> { +// ctx.reply("This command is no longer active. An alternative is currently being developed. For more information, please contact " + owner.getDiscriminatedName()); +// }); } }