diff options
author | 2018-12-02 03:21:27 +1000 | |
---|---|---|
committer | 2018-12-03 09:18:50 +1000 | |
commit | 08e63544f25a77a6a024c436daa86f997b85f6f9 (patch) | |
tree | 253cef91647bdff51023a1b7c309e142edd9af21 /bot/constants.py | |
parent | Add season element set methods, add server icon change support (diff) |
Add season announcement support
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py index 52da161e..02bc5a38 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -4,14 +4,14 @@ from typing import NamedTuple from bot.bot import SeasonalBot -__all__ = ('Client', 'Roles', 'bot') +__all__ = ("Channels", "Client", "Roles", "bot") log = logging.getLogger(__name__) class Channels(NamedTuple): admins = 365960823622991872 - announcements = 354619224620138496 + announcements = int(environ.get('CHANNEL_ANNOUNCEMENTS', 354619224620138496)) big_brother_logs = 468507907357409333 bot = 267659945086812160 checkpoint_test = 422077681434099723 |