diff options
author | 2020-03-14 22:13:06 +0100 | |
---|---|---|
committer | 2020-03-14 22:53:55 +0100 | |
commit | c67cbbb2ff3fccf00c6e54349d626f6b644ef385 (patch) | |
tree | b176def92a6d56ce0a49925053884e16014617c4 | |
parent | Deseasonify: add `set_banner` method to SeasonalBot (diff) |
Deseasonify: improve documentation for `icon_cycle_frequency`
-rw-r--r-- | bot/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index 19bbe441..4d409e61 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -69,7 +69,7 @@ class Client(NamedTuple): token = environ.get("SEASONALBOT_TOKEN") debug = environ.get("SEASONALBOT_DEBUG", "").lower() == "true" season_override = environ.get("SEASON_OVERRIDE") - icon_cycle_frequency = 3 # N days to wait between cycling server icons within a single season + icon_cycle_frequency = 3 # 0: never, 1: every day, 2: every other day, ... class Colours: |