From 9699e3a62d03d27acaac6e5376c2327cb8abf739 Mon Sep 17 00:00:00 2001 From: bradtimmis Date: Thu, 23 Sep 2021 21:42:24 -0400 Subject: chore: set thumbnail image to 80x80 --- bot/exts/utilities/color.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bot') 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) -- cgit v1.2.3