Fixed disabled command info string

This commit is contained in:
agryczewski 2022-01-20 11:00:28 -05:00
parent f7e4b34107
commit 4aca4fb187
3 changed files with 4 additions and 7 deletions

View File

@ -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();

View File

@ -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");
}
}

View File

@ -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");
}
}