comprehension grammar fix

master
xenofem 2020-05-13 17:11:09 -04:00
parent c4f04c80c5
commit bb1fd7d1c4
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class MyClient(discord.Client):
if message.author == self.user:
return
if self.user not in message.mentions and self.user not in [m for m in role.members for role in message.role_mentions]:
if self.user not in message.mentions and self.user not in [m for role in message.role_mentions for m in role.members]:
return
await message.channel.send(gen_sentence())