Changed the SuggestCommand

This commit is contained in:
Joel 2021-02-20 02:03:08 +01:00
parent 771982ed19
commit d3362b9f91
2 changed files with 2 additions and 2 deletions

@ -24,5 +24,5 @@ public class BotConstants {
public static final String COPYRIGHT = "© McGamerZone - " + Calendar.getInstance().get(Calendar.YEAR);
// Channels
public static final String SUGGESTIONS = "811048367412215851"; // TODO: 2/15/2021 Change this to the main guild's suggestions channel when the bot is on the main guild.
public static final String SUGGESTIONS = "802304706701426730"; // TODO: 2/15/2021 Change this to the main guild's suggestions channel when the bot is on the main guild.
}

@ -22,7 +22,7 @@ public class SuggestCommand extends BaseCommand {
help = "Share a suggestion!";
arguments = "<suggestion>";
guildOnly = true;
guilds = Collections.singletonList(Guild.TEST); // TODO: 2/15/2021 Update this to MAIN whenever the bot is on the main guild.
guilds = Collections.singletonList(Guild.MAIN);
}
@Override