diff options
author | 2024-09-13 22:10:58 +0300 | |
---|---|---|
committer | 2024-09-13 20:10:58 +0100 | |
commit | 1cf62552f77955c89fd9dd1631e0efa6391ad74c (patch) | |
tree | b4263a1d091923489db2148986b6bc789ade04d2 | |
parent | Bump lxml from 5.2.2 to 5.3.0 (#1599) (diff) |
Use the cleaned content in the uwu command (#1606)
-rw-r--r-- | bot/exts/fun/uwu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/uwu.py b/bot/exts/fun/uwu.py index f548d24b..e782e795 100644 --- a/bot/exts/fun/uwu.py +++ b/bot/exts/fun/uwu.py @@ -175,7 +175,7 @@ class Uwu(Cog): # If we weren't able to get the content of a replied message raise commands.UserInputError("Your message must have content or you must reply to a message.") - await clean_content(fix_channel_mentions=True).convert(ctx, text) + text = await clean_content(fix_channel_mentions=True).convert(ctx, text) # Grabs the text from the embed for uwuification if embeds: |