aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/constants.py1
-rw-r--r--bot/exts/christmas/advent_of_code/_cog.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py
index fc9929ec..e459ed21 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -76,7 +76,6 @@ class Branding:
class Channels(NamedTuple):
admins = 365960823622991872
advent_of_code = int(environ.get("AOC_CHANNEL_ID", 780818162836439041))
- advent_of_code_staff = int(environ.get("AOC_STAFF_CHANNEL_ID", 778646502641500181))
announcements = int(environ.get("CHANNEL_ANNOUNCEMENTS", 354619224620138496))
big_brother_logs = 468507907357409333
bot = 267659945086812160
diff --git a/bot/exts/christmas/advent_of_code/_cog.py b/bot/exts/christmas/advent_of_code/_cog.py
index 1a6715bb..388d0592 100644
--- a/bot/exts/christmas/advent_of_code/_cog.py
+++ b/bot/exts/christmas/advent_of_code/_cog.py
@@ -24,7 +24,7 @@ AOC_REQUEST_HEADER = {"user-agent": "PythonDiscord AoC Event Bot"}
EST = timezone("EST")
COUNTDOWN_STEP = 60 * 5
-AOC_WHITELIST = WHITELISTED_CHANNELS + (Channels.advent_of_code, Channels.advent_of_code_staff)
+AOC_WHITELIST = WHITELISTED_CHANNELS + (Channels.advent_of_code,)
def is_in_advent() -> bool: