diff --git a/techsupport_bot/commands/modmail.py b/techsupport_bot/commands/modmail.py index c5fb8eea..86f6301a 100644 --- a/techsupport_bot/commands/modmail.py +++ b/techsupport_bot/commands/modmail.py @@ -1066,23 +1066,23 @@ async def on_message(self: Self, message: discord.Message) -> None: # - Replies - case "reply": - await message.delete() await reply_to_thread( raw_contents=content[5:], message=message, thread=message.channel, anonymous=False, ) + await message.delete() return case "areply": - await message.delete() await reply_to_thread( raw_contents=content[6:], message=message, thread=message.channel, anonymous=True, ) + await message.delete() return # Sends a factoid