diff options
author | 2020-11-24 17:39:42 +0200 | |
---|---|---|
committer | 2020-11-24 17:39:42 +0200 | |
commit | e956170ab1be2ff2af803ce6ea46c6bcb2f91837 (patch) | |
tree | 000973172ce362ae903223e3ad906c4b2290a255 /bot/exts/christmas/adventofcode.py | |
parent | Update constants to match with new format of AoC that will run in 2020 (diff) |
Add staff AoC channel to whitelist
Diffstat (limited to 'bot/exts/christmas/adventofcode.py')
-rw-r--r-- | bot/exts/christmas/adventofcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/christmas/adventofcode.py b/bot/exts/christmas/adventofcode.py index b3fe0623..fdd84d5d 100644 --- a/bot/exts/christmas/adventofcode.py +++ b/bot/exts/christmas/adventofcode.py @@ -25,7 +25,7 @@ AOC_SESSION_COOKIE = {"session": Tokens.aoc_session_cookie} EST = timezone("EST") COUNTDOWN_STEP = 60 * 5 -AOC_WHITELIST = WHITELISTED_CHANNELS + (Channels.advent_of_code,) +AOC_WHITELIST = WHITELISTED_CHANNELS + (Channels.advent_of_code, Channels.advent_of_code_staff) def is_in_advent() -> bool: |