aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/christmas/adventofcode.py
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-11-24 17:39:42 +0200
committerGravatar ks129 <[email protected]>2020-11-24 17:39:42 +0200
commite956170ab1be2ff2af803ce6ea46c6bcb2f91837 (patch)
tree000973172ce362ae903223e3ad906c4b2290a255 /bot/exts/christmas/adventofcode.py
parentUpdate 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.py2
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: