diff options
| author | 2020-12-11 19:30:23 -0500 | |
|---|---|---|
| committer | 2020-12-11 22:08:18 -0500 | |
| commit | 0ca1c0b55ea5d07694dc53d4f4856cbcddb35a8f (patch) | |
| tree | 598d310efac21e3bcb80f3c6b55d5a38d98a9751 | |
| parent | Remove extra please (diff) | |
Change Default AoC Commands Channel
Changes the default value of the advent_of_code_commands constant to be
the same channel ID as sir-lancebot-commands. If no AoC commands channel
is set in the .env file, it'll re-direct people to sir-lancebot-commands
instead.
| -rw-r--r-- | bot/constants.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/constants.py b/bot/constants.py index 5dc42462..a58801f7 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -95,7 +95,7 @@ class Branding:  class Channels(NamedTuple):      admins = 365960823622991872      advent_of_code = int(environ.get("AOC_CHANNEL_ID", 782715290437943306)) -    advent_of_code_commands = int(environ.get("AOC_COMMANDS_CHANNEL_ID", 783503267849437205)) +    advent_of_code_commands = int(environ.get("AOC_COMMANDS_CHANNEL_ID", 607247579608121354))      announcements = int(environ.get("CHANNEL_ANNOUNCEMENTS", 354619224620138496))      big_brother_logs = 468507907357409333      bot = 267659945086812160 | 
