aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/8bitify.py
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-01-17 13:58:58 +0200
committerGravatar GitHub <[email protected]>2021-01-17 13:58:58 +0200
commit63ac6c766e04a18d56029bf287375bdcacab475d (patch)
treeb64f71de352f9f6f3502414553b5282e16e180c2 /bot/exts/evergreen/8bitify.py
parentAdd OAuth response to warning. (diff)
parentMerge pull request #557 from python-discord/add_voice_chat (diff)
Merge branch 'master' into IGDB-V4
Diffstat (limited to 'bot/exts/evergreen/8bitify.py')
-rw-r--r--bot/exts/evergreen/8bitify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/8bitify.py b/bot/exts/evergreen/8bitify.py
index c048d9bf..54e68f80 100644
--- a/bot/exts/evergreen/8bitify.py
+++ b/bot/exts/evergreen/8bitify.py
@@ -19,7 +19,7 @@ class EightBitify(commands.Cog):
@staticmethod
def quantize(image: Image) -> Image:
"""Reduces colour palette to 256 colours."""
- return image.quantize(colors=32)
+ return image.quantize()
@commands.command(name="8bitify")
async def eightbit_command(self, ctx: commands.Context) -> None: