aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar bradtimmis <[email protected]>2021-09-23 21:42:24 -0400
committerGravatar Chris Lovering <[email protected]>2021-10-05 16:42:51 +0100
commit9699e3a62d03d27acaac6e5376c2327cb8abf739 (patch)
treec58c408d5e2d0e97223d0f7c35d3be3038189024 /bot
parentchore: remove single-use constant for json path (diff)
chore: set thumbnail image to 80x80
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/utilities/color.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utilities/color.py b/bot/exts/utilities/color.py
index ac7b5fc6..57510488 100644
--- a/bot/exts/utilities/color.py
+++ b/bot/exts/utilities/color.py
@@ -171,7 +171,7 @@ class Color(commands.Cog):
Assumes that color is an rgb tuple.
"""
- thumbnail = Image.new("RGB", (100, 100), color=color)
+ thumbnail = Image.new("RGB", (80, 80), color=color)
bufferedio = BytesIO()
thumbnail.save(bufferedio, format="PNG")
bufferedio.seek(0)