diff --git a/redbot/cogs/audio/audio.py b/redbot/cogs/audio/audio.py index 868e13a09..614bdc85a 100644 --- a/redbot/cogs/audio/audio.py +++ b/redbot/cogs/audio/audio.py @@ -425,7 +425,11 @@ class Audio: await message.add_reaction(expected[i]) def check(r, u): - return r.message.id == message.id and u == ctx.message.author + return ( + r.message.id == message.id + and u == ctx.message.author + and any(e in str(r.emoji) for e in expected) + ) try: (r, u) = await self.bot.wait_for("reaction_add", check=check, timeout=10.0)