Fixed disabled command info string
This commit is contained in:
parent
f7e4b34107
commit
4aca4fb187
@ -24,7 +24,7 @@ public class Main {
|
|||||||
private final static Logger logger = LoggerFactory.getLogger(Main.class);
|
private final static Logger logger = LoggerFactory.getLogger(Main.class);
|
||||||
|
|
||||||
public static void main(String[] args) {
|
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();
|
FSDB.init();
|
||||||
|
|
||||||
|
@ -18,8 +18,7 @@ public class ColorCommand extends Command {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCommand(CommandContext ctx) {
|
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 Salmonllama#7233");
|
||||||
ctx.reply("This command is no longer active. An alternative is currently being developed. For more information, please contact " + owner.getDiscriminatedName());
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,8 +19,6 @@ public class ColorsCommand extends Command {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCommand(CommandContext ctx) {
|
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 Salmonllama#7233");
|
||||||
ctx.reply("This command is no longer active. An alternative is currently being developed. For more information, please contact " + owner.getDiscriminatedName());
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user