Respond to purge command before delete

This commit is contained in:
Oliver Traber 2023-07-11 23:07:32 +02:00
parent b864911744
commit d553237989
Signed by: Bluemedia
GPG key ID: C0674B105057136C

2
bot.py
View file

@ -147,8 +147,8 @@ async def purge(interaction: discord.Interaction, days: int):
if days > 13:
await interaction.response.send_message(content='❌ Error: Due to technical limitations, 13 days is the maximum after which I can still delete messages. Please use `13` days or less.', delete_after=20)
return
await interaction.response.send_message(content='✅ Messages will be deleted shortly.', delete_after=20)
await purge_messages(channel=interaction.channel, audit_message=f'Deleted via /purge command from user {interaction.user.name}', before=interaction.created_at, after=(datetime.now() - timedelta(days=days)))
await interaction.response.send_message(content='✅ Messages deleted.', delete_after=20)
client.activity = Game(name="with the broomstick")