Compare commits

..

1 Commits

Author SHA1 Message Date
xenofem 128af6b3c0 delete spoilered posts on react by original poster 2021-03-23 22:49:25 -04:00
1 changed files with 3 additions and 3 deletions

View File

@ -50,9 +50,9 @@ async def on_message(message):
@client.event
async def on_reaction_add(reaction, user):
if reaction.message.author == client.user
and str(reaction.emoji) == ''
and reaction.message.content.startswith('{0} says: '.format(user.mention)):
if (reaction.message.author == client.user
and str(reaction.emoji) == ''
and reaction.message.content.startswith('{0} says: '.format(user.mention))):
try:
await reaction.message.delete()
except discord.DiscordException as e: