From c5d36177e130203f76e0bdedb013659fc9d43ea6 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Fri, 10 Jul 2020 23:05:31 +0100 Subject: [PATCH] Fixing Errors --- cogs/help/modmail.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cogs/help/modmail.py b/cogs/help/modmail.py index 174e5614..d47d0e8c 100644 --- a/cogs/help/modmail.py +++ b/cogs/help/modmail.py @@ -238,6 +238,8 @@ class Modmail(commands.Cog): guild = self.bot.get_guild(enso_guild_ID) # Get Hamothy member = guild.get_member(hammyID) + # Get the member sending Modmail + user = guild.get_member(ctx.author.id) # Making sure the user is in a DM channel with the bot if isinstance(ctx.message.channel, DMChannel): @@ -311,7 +313,7 @@ class Modmail(commands.Cog): # Delete the previous embed await instructions.delete() # Send the message to the modmail channel - await channel.send(embed=SendMsgToModMail(self, msg, member)) + await channel.send(embed=SendMsgToModMail(self, msg, user)) # Make sure the user knows that their message has been sent await ctx.send(embed=MessageSentConfirmation(member)) @@ -344,7 +346,7 @@ class Modmail(commands.Cog): # Delete the previous embed await instructions.delete() # Send the message to the modmail channel - await channel.send(embed=SendMsgToModMail(self, msg, member)) + await channel.send(embed=SendMsgToModMail(self, msg, user)) # Make sure the user knows that their message has been sent await ctx.send(embed=MessageSentConfirmation(member))