diff options
author | 2018-12-02 05:38:53 +0000 | |
---|---|---|
committer | 2018-12-02 05:38:53 +0000 | |
commit | 325074c2b4928ef52bf34490e153dc254fef700b (patch) | |
tree | 425b8c8deb1e426cde26b87a6bbf0bb4437a8725 /bot/constants.py | |
parent | Fix global lb display to respect ties (#79) (diff) |
AoC countdown (#81)
* Add countdown status and notifications
* Remove debug print
* flake8 my ass
* Import order fixes
* while is_in_advent() instead of while True
* 2 * 60 => 120
* while is_in_advent() instead of while True in notifier
Diffstat (limited to 'bot/constants.py')
-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 6020f1c1..1294912a 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -87,6 +87,8 @@ class AdventOfCode: leaderboard_join_code = "363275-442b6939" leaderboard_max_displayed_members = 10 year = 2018 + channel_id = int(environ.get("AOC_CHANNEL_ID", 517745814039166986)) + role_id = int(environ.get("AOC_ROLE_ID", 518565788744024082)) bot = SeasonalBot(command_prefix=Client.prefix) |