diff options
| author | 2019-06-21 20:06:41 +0100 | |
|---|---|---|
| committer | 2019-06-21 20:06:41 +0100 | |
| commit | fe17381802e4921080e38a42711bd97909c1a8b8 (patch) | |
| tree | 643e68fb56fdf5618bdb142c297b9badb60c169e | |
| parent | Change base logic to allow for listed icon attributes (diff) | |
Fix new season not being reassigned and loaded
Diffstat (limited to '')
| -rw-r--r-- | bot/seasons/season.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/bot/seasons/season.py b/bot/seasons/season.py index 2982bc47..49882247 100644 --- a/bot/seasons/season.py +++ b/bot/seasons/season.py @@ -399,6 +399,7 @@ class SeasonManager(commands.Cog):              # If the season has changed, load it.              new_season = get_season(date=datetime.datetime.utcnow())              if new_season.name != self.season.name: +                self.season = new_season                  await self.season.load()              else:                  await self.season.change_server_icon() | 
