diff options
-rw-r--r-- | bot/branding.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bot/branding.py b/bot/branding.py index 683dce61..195d46a2 100644 --- a/bot/branding.py +++ b/bot/branding.py @@ -292,8 +292,9 @@ class BrandingManager(commands.Cog): # await self.bot.set_avatar(self.avatar.download_url) log.info(f"Applying avatar: {self.avatar.download_url}") - # await self.bot.set_nickname(self.current_season.bot_name) - log.info(f"Applying nickname: {self.current_season.bot_name}") + if self.current_season.bot_name: + # await self.bot.set_nickname(self.current_season.bot_name) + log.info(f"Applying nickname: {self.current_season.bot_name}") await self.cycle() |