aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/8bitify.py
diff options
context:
space:
mode:
authorGravatar Xithrius <[email protected]>2021-01-24 06:46:03 -0800
committerGravatar GitHub <[email protected]>2021-01-24 06:46:03 -0800
commita9fbfd275ad8585f40e834df3bc2a7a988973b04 (patch)
treed83440b2136f4d2294f1087591369dd63e8099da /bot/exts/evergreen/8bitify.py
parentMerge branch 'master' into startup-channel-check (diff)
parentMerge pull request #415 from htudu/issue-337 (diff)
Merge branch 'master' into startup-channel-check
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: