diff --git a/src/main/java/dev/salmonllama/fsbot/Main.java b/src/main/java/dev/salmonllama/fsbot/Main.java index ec3847c..27acc71 100644 --- a/src/main/java/dev/salmonllama/fsbot/Main.java +++ b/src/main/java/dev/salmonllama/fsbot/Main.java @@ -24,7 +24,7 @@ public class Main { private final static Logger logger = LoggerFactory.getLogger(Main.class); public static void main(String[] args) { - BotConfig.initConfig(Constants.BOT_FOLDER, false); + BotConfig.initConfig(Constants.BOT_FOLDER, false); // TODO: Sunset the bot config once and for all FSDB.init(); diff --git a/src/main/java/dev/salmonllama/fsbot/commands/general/ColorCommand.java b/src/main/java/dev/salmonllama/fsbot/commands/general/ColorCommand.java index 2c659d8..cd0d85c 100644 --- a/src/main/java/dev/salmonllama/fsbot/commands/general/ColorCommand.java +++ b/src/main/java/dev/salmonllama/fsbot/commands/general/ColorCommand.java @@ -18,8 +18,7 @@ public class ColorCommand 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.reply("This command is no longer active. An alternative is currently being developed. For more information, please contact Salmonllama#7233"); + } } diff --git a/src/main/java/dev/salmonllama/fsbot/commands/general/ColorsCommand.java b/src/main/java/dev/salmonllama/fsbot/commands/general/ColorsCommand.java index e7d7ee2..80e2485 100644 --- a/src/main/java/dev/salmonllama/fsbot/commands/general/ColorsCommand.java +++ b/src/main/java/dev/salmonllama/fsbot/commands/general/ColorsCommand.java @@ -19,8 +19,6 @@ public class ColorsCommand 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.reply("This command is no longer active. An alternative is currently being developed. For more information, please contact Salmonllama#7233"); } }