aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-01-10 07:57:26 +0200
committerGravatar GitHub <[email protected]>2021-01-10 07:57:26 +0200
commit890860bc4a6dbf7bae8205f2ecd5f0c10026bc71 (patch)
tree0dee04240858236f32a7b707c8c8613ed4b17ea1
parentMerge pull request #510 from hedythedev/hackstats (diff)
parentActually use 256 colours (diff)
Merge pull request #553 from ChrisLovering/8bit-colour-palette
Actually use 256 colours
-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: