Browse Source

Remove conditional that should no longer be needed.

(from PR feedback)
pull/171/head
slicedlime 5 years ago
parent
commit
e37551353c
  1. 4
      disco/bot/bot.py

4
disco/bot/bot.py

@ -308,9 +308,7 @@ class Bot(LoggingClass):
if msg.guild: if msg.guild:
member = msg.guild.get_member(self.client.state.me) member = msg.guild.get_member(self.client.state.me)
if member: if member:
# If nickname is set, filter both the normal and nick mentions # Filter both the normal and nick mentions
if member.nick:
content = content.replace(member.mention, '', 1)
content = content.replace(member.user.mention, '', 1) content = content.replace(member.user.mention, '', 1)
content = content.replace(member.user.mention_nickname, '', 1) content = content.replace(member.user.mention_nickname, '', 1)
else: else:

Loading…
Cancel
Save