aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar bradtimmis <[email protected]>2021-09-23 21:42:24 -0400
committerGravatar bradtimmis <[email protected]>2021-09-23 21:42:24 -0400
commitbae934537185c50089d854a22f76596bd4403a39 (patch)
tree14798cfbce3eb1d5c53f2d0ff59105bdb5e03ca5
parentchore: create subcommands for sending embed (diff)
chore: set thumbnail image to 80x80
-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 6cc03c9a..1652ee19 100644
--- a/bot/exts/utilities/color.py
+++ b/bot/exts/utilities/color.py
@@ -168,7 +168,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)