We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec396b9 commit d28f638Copy full SHA for d28f638
bot.py
@@ -318,9 +318,10 @@ async def archive(self, ctx):
318
archives = discord.utils.get(ctx.guild.categories, name='Mod Mail Archives')
319
await ctx.channel.edit(category=archives)
320
done = discord.Embed(title='Thread Archived')
321
- done.description = f'**{ctx.author}** has archived this modmail session.'
+ done.description = f'{ctx.author.mention} has archived this modmail session.'
322
done.color = discord.Color.red()
323
await ctx.send(embed=done)
324
+ await ctx.message.delete()
325
326
@commands.command()
327
@commands.has_permissions(administrator=True)
0 commit comments