From 0ff7259bc37dea30e88c11952f27f31211c64693 Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Tue, 23 Apr 2019 15:41:46 -0700 Subject: [PATCH] [Audio] DJ role should ask for a role (#2606) --- 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 05406b85c..4e366b6bf 100644 --- a/redbot/cogs/audio/audio.py +++ b/redbot/cogs/audio/audio.py @@ -293,7 +293,7 @@ class Audio(commands.Cog): DJ mode allows users with the DJ role to use audio commands. """ dj_role_id = await self.config.guild(ctx.guild).dj_role() - if dj_role_id is None and ctx.guild.get_role(dj_role_id): + if dj_role_id is None: await self._embed_msg( ctx, _("Please set a role to use with DJ mode. Enter the role name or ID now.") )