diff options
author | 2021-05-07 17:36:56 +0100 | |
---|---|---|
committer | 2021-05-07 17:36:56 +0100 | |
commit | 94a9550f3729d7c266c3437554b36d8b52fc84fb (patch) | |
tree | 30558682c34b7f557685a17b50c0ff038a65c0a3 /bot | |
parent | Download avatars as size 1024 to avoid very large avatars affecting infra (diff) |
Add the number of squares that were used by .mosaic
This is useful for when we round up the number of squares used, users can still see how many were
actually used.
Diffstat (limited to 'bot')
-rw-r--r-- | bot/exts/evergreen/avatar_modification/avatar_modify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/avatar_modification/avatar_modify.py b/bot/exts/evergreen/avatar_modification/avatar_modify.py index 1eceaf03..b604b3e4 100644 --- a/bot/exts/evergreen/avatar_modification/avatar_modify.py +++ b/bot/exts/evergreen/avatar_modification/avatar_modify.py @@ -351,7 +351,7 @@ class AvatarModify(commands.Cog): description = "What a masterpiece. :star:" else: title = "Your mosaic avatar" - description = "Here is your avatar. I think it looks a bit *puzzling*" + description = f"Here is your avatar. I think it looks a bit *puzzling*\nMade with {squares} squares" embed = discord.Embed( title=title, |