aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar brad90four <[email protected]>2021-09-27 10:39:44 -0400
committerGravatar brad90four <[email protected]>2021-09-27 10:39:44 -0400
commit0e98da269837514fc1ac51885735e16a2287b2e8 (patch)
tree695b23631b22f9ed101b8045aa8c02adef67a609 /bot
parentchore: remove single-use constant for json path (diff)
parentMerge branch 'color-677' of github.com:brad90four/sir-lancebot into color-677 (diff)
Merge branch 'color-677' of https://github.com/brad90four/sir-lancebot into color-677
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)