From 563c94ff5c53c70220f955a5a8014251922464e2 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 7 Sep 2023 19:51:36 -0400 Subject: [PATCH] misc(forums): made clicking yes delete the original message as well --- forums/forums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forums/forums.py b/forums/forums.py index 7d61663..bcbf8e9 100644 --- a/forums/forums.py +++ b/forums/forums.py @@ -61,7 +61,7 @@ class Forums(commands.Cog): response_reason = f"Thread closed by {interaction.user.mention}" reason = f"Thread closed by {interaction.user.name} ({interaction.user.id})" await self.msg.edit(content=response_reason, view=None) - await self.ctx.message.add_reaction("✅") + await self.ctx.message.delete() tag = interaction.channel.parent.get_tag(await self.config.guild(interaction.guild).forum_tag()) if tag in interaction.channel.applied_tags: await interaction.channel.edit(locked=True, archived=True, reason=reason)