aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/8bitify.py
diff options
context:
space:
mode:
authorGravatar Rohan <[email protected]>2021-01-22 11:59:37 +0530
committerGravatar Rohan <[email protected]>2021-01-22 11:59:37 +0530
commitdfdebdbab564b8493c6a8c251a32227227c834e6 (patch)
tree60ad18b8eaedf9ff7ba35af827bbeebb2a0058f4 /bot/exts/evergreen/8bitify.py
parentFix bug in auto_poster_loop() regarding embed description. (diff)
parentMerge pull request #564 from rijusougata13/master (diff)
Merge branch 'master' of https://github.com/python-discord/sir-lancebot into reddit_migration
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: