diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/filters/filtering.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/bot/exts/filters/filtering.py b/bot/exts/filters/filtering.py index b7a7e8093..022b4ab02 100644 --- a/bot/exts/filters/filtering.py +++ b/bot/exts/filters/filtering.py @@ -370,7 +370,8 @@ class Filtering(Cog):                              # This sends the ban confirmation directly under watchlist trigger embed, to inform                              # mods that the user was auto-banned for the message.                              context = await self.bot.get_context(msg) -                            context.author = self.bot.get_guild(Guild.id).get_member(self.bot.user.id) +                            context.guild = self.bot.get_guild(Guild.id) +                            context.author = context.guild.get_member(self.bot.user.id)                              context.channel = self.bot.get_channel(Channels.mod_alerts)                              context.command = self.bot.get_command("tempban") | 
