diff options
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 691e7760..f552aec7 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -65,6 +65,7 @@ class Channels(NamedTuple): class Branding: cycle_frequency = int(environ.get("CYCLE_FREQUENCY", 3)) # 0: never, 1: every day, 2: every other day, ... + autostart = bool(environ.get("BRANDING_AUTOSTART", True)) # Launch the branding daemon automatically on start-up class Client(NamedTuple): |