diff options
author | 2020-04-16 15:05:22 -0700 | |
---|---|---|
committer | 2020-04-16 15:05:22 -0700 | |
commit | c6c87378cd6dd65e2fac83b97d48430c3cb0917c (patch) | |
tree | adfeac6f64ed5ffc2f4e728d29bce4501199924c /bot/exts/evergreen/branding.py | |
parent | Merge pull request #396 from ks129/keyerrors-fix (diff) | |
parent | Merge branch 'master' into wait-until-guild-ready (diff) |
Merge pull request #395 from python-discord/wait-until-guild-ready
Wait until guild ready
Diffstat (limited to 'bot/exts/evergreen/branding.py')
-rw-r--r-- | bot/exts/evergreen/branding.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/branding.py b/bot/exts/evergreen/branding.py index 72f31042..1d463c5b 100644 --- a/bot/exts/evergreen/branding.py +++ b/bot/exts/evergreen/branding.py @@ -198,7 +198,7 @@ class BrandingManager(commands.Cog): All method calls in the internal loop are considered safe, i.e. no errors propagate to the daemon's loop. The daemon itself does not perform any error handling on its own. """ - await self.bot.wait_until_ready() + await self.bot.wait_until_guild_available() while True: self.current_season = get_current_season() |