diff options
Diffstat (limited to 'bot')
-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 ab402ae1..421aeef7 100644 --- a/bot/exts/evergreen/branding.py +++ b/bot/exts/evergreen/branding.py @@ -357,7 +357,7 @@ class BrandingManager(commands.Cog): log.info("Reset & shuffle remaining icons") await self._reset_remaining_icons() - next_up, *self.remaining_icons = self.remaining_icons + next_up = self.remaining_icons.pop(0) success = await self.bot.set_icon(next_up.download_url) return success |