diff options
author | 2020-10-12 13:42:22 -0500 | |
---|---|---|
committer | 2020-10-12 13:42:22 -0500 | |
commit | 3c02761087e98cede89f330470002248e03d0d0b (patch) | |
tree | 61bd1ead92428cd287786e9514b25968069365a3 | |
parent | Merge pull request #465 from LakshyaShastri/master (diff) |
Adding #voice_chat to the Seasonal Bot white list
Since SeasonalBot is able to be used in the off-topic channels, it makes to have it work in the voice_chat channel as well.
-rw-r--r-- | bot/constants.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index e113428e..1909cb86 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -75,6 +75,7 @@ class Channels(NamedTuple): show_your_projects = int(environ.get("CHANNEL_SHOW_YOUR_PROJECTS", 303934982764625920)) show_your_projects_discussion = 360148304664723466 hacktoberfest_2020 = 760857070781071431 + voice_chat = 412357430186344448 class Client(NamedTuple): @@ -209,6 +210,7 @@ WHITELISTED_CHANNELS = ( Channels.off_topic_0, Channels.off_topic_1, Channels.off_topic_2, + Channels.voice_chat, ) # Bot replies |