From 158b27c7dd101531fd5aae8db2a6eff5b4e8ff25 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 25 Jul 2020 15:30:16 +0100 Subject: [PATCH] OwO text sent by the user is deleted --- cogs/fun.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cogs/fun.py b/cogs/fun.py index 40e9c69e..35d8f542 100644 --- a/cogs/fun.py +++ b/cogs/fun.py @@ -363,6 +363,9 @@ class Fun(commands.Cog): async def owo(self, ctx, *, text): """Converts given text to 'OwO' format""" + # Delete the message sent by the user + await ctx.message.delete() + # Convert to "OwO" text uwu = OwO() owo = uwu.whatsthis(text)