diff options
author | 2019-08-04 10:31:12 -0400 | |
---|---|---|
committer | 2019-08-04 10:31:12 -0400 | |
commit | 1b481b7c91ff1e329f7419901b939674db969c7c (patch) | |
tree | 14c2f60b5c1d568021196c5357c6def1f05f4a6c /bot/constants.py | |
parent | Merge pull request #243 from python-discord/decimate-readme (diff) |
Add new Seasonalbot channel IDs to constants
Change Show Your Projects channel to an env var
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index be53a764..c9b8f6b5 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -46,10 +46,12 @@ class Channels(NamedTuple): python = 267624335836053506 reddit = 458224812528238616 seasonalbot_chat = int(environ.get('CHANNEL_SEASONALBOT_CHAT', 542272993192050698)) + seasonalbot_commands = int(environ.get('CHANNEL_SEASONALBOT_COMMANDS', 607247579608121354)) + seasonalbot_voice = int(environ.get('CHANNEL_SEASONALBOT_VOICE', 606259004230074378)) staff_lounge = 464905259261755392 verification = 352442727016693763 python_discussion = 267624335836053506 - show_your_projects = 303934982764625920 + show_your_projects = int(environ.get('CHANNEL_SHOW_YOUR_PROJECTS', 303934982764625920)) show_your_projects_discussion = 360148304664723466 |