From 0e40a884fd1635fa9b57202e0b762f8a7c96deb1 Mon Sep 17 00:00:00 2001 From: Myned Date: Fri, 1 Nov 2019 19:30:10 -0400 Subject: [PATCH] Fix Context reactions not sending --- src/cogs/tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cogs/tools.py b/src/cogs/tools.py index f0ead6d..ba70955 100644 --- a/src/cogs/tools.py +++ b/src/cogs/tools.py @@ -63,7 +63,7 @@ class Utils(cmds.Cog): try: await tempchannel.send(message) - await ctx.add_reaction('\N{WHITE HEAVY CHECK MARK}') + await ctx.message.add_reaction('\N{WHITE HEAVY CHECK MARK}') except AttributeError: await ctx.send('**Invalid channel**') @@ -76,4 +76,4 @@ class Utils(cmds.Cog): @send.command(name='user', aliases=['u', 'member', 'm']) async def send_user(self, ctx, user, *, message): await d.utils.get(self.bot.get_all_members(), id=int(user)).send(message) - await ctx.add_reaction('\N{WHITE HEAVY CHECK MARK}') + await ctx.message.add_reaction('\N{WHITE HEAVY CHECK MARK}')