diff --git a/disco/bot/bot.py b/disco/bot/bot.py index 92c22f9..d354e29 100644 --- a/disco/bot/bot.py +++ b/disco/bot/bot.py @@ -313,8 +313,9 @@ class Bot(LoggingClass): if msg.guild: member = msg.guild.get_member(self.client.state.me) if member: - content = content.replace(member.user.mention_nickname, '', 1) + # Filter both the normal and nick mentions content = content.replace(member.user.mention, '', 1) + content = content.replace(member.user.mention_nickname, '', 1) else: content = content.replace(self.client.state.me.mention, '', 1) elif mention_everyone: