diff options
author | 2021-09-27 10:39:44 -0400 | |
---|---|---|
committer | 2021-09-27 10:39:44 -0400 | |
commit | 0e98da269837514fc1ac51885735e16a2287b2e8 (patch) | |
tree | 695b23631b22f9ed101b8045aa8c02adef67a609 | |
parent | chore: remove single-use constant for json path (diff) | |
parent | Merge 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
-rw-r--r-- | bot/exts/utilities/color.py | 2 |
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) |