From d3362b9f914a3fad3cdd040e283a994c567987b8 Mon Sep 17 00:00:00 2001 From: Joel Date: Sat, 20 Feb 2021 02:03:08 +0100 Subject: [PATCH] Changed the SuggestCommand --- .../src/main/java/zone/themcgamer/discordbot/BotConstants.java | 2 +- .../zone/themcgamer/discordbot/command/impl/SuggestCommand.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/discordbot/src/main/java/zone/themcgamer/discordbot/BotConstants.java b/discordbot/src/main/java/zone/themcgamer/discordbot/BotConstants.java index a518f3e..34df8c5 100644 --- a/discordbot/src/main/java/zone/themcgamer/discordbot/BotConstants.java +++ b/discordbot/src/main/java/zone/themcgamer/discordbot/BotConstants.java @@ -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. } \ No newline at end of file diff --git a/discordbot/src/main/java/zone/themcgamer/discordbot/command/impl/SuggestCommand.java b/discordbot/src/main/java/zone/themcgamer/discordbot/command/impl/SuggestCommand.java index eb83ff3..adf1098 100644 --- a/discordbot/src/main/java/zone/themcgamer/discordbot/command/impl/SuggestCommand.java +++ b/discordbot/src/main/java/zone/themcgamer/discordbot/command/impl/SuggestCommand.java @@ -22,7 +22,7 @@ public class SuggestCommand extends BaseCommand { help = "Share a suggestion!"; arguments = ""; 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