From 43b0a58649041c04f876fbec57b963efe2c71a39 Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Sun, 26 Aug 2018 16:44:19 -0700 Subject: [PATCH] [Audio] Fix for embed color (no, COLOUR) on notify messages (#2059) --- redbot/cogs/audio/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/cogs/audio/audio.py b/redbot/cogs/audio/audio.py index ea0f38b6a..cafda2319 100644 --- a/redbot/cogs/audio/audio.py +++ b/redbot/cogs/audio/audio.py @@ -75,7 +75,7 @@ class Audio: async def _get_embed_colour(self, channel: discord.abc.GuildChannel): # Unfortunately we need this for when context is unavailable. - if await self.bot.db.guild(channel.guild).use_bot_colour(): + if await self.bot.db.guild(channel.guild).use_bot_color(): return channel.guild.me.color else: return self.bot.color