diff options
author | 2021-01-16 22:10:42 +0200 | |
---|---|---|
committer | 2021-01-16 22:10:42 +0200 | |
commit | 0a6947b248da98cb14504b0361351ef79b1230f1 (patch) | |
tree | ac5382855f2a4b0dce9cde4f324a0312bb92b272 /bot/exts/evergreen/8bitify.py | |
parent | Fix too long line (diff) | |
parent | Merge pull request #557 from python-discord/add_voice_chat (diff) |
Merge branch 'master' into tic-tac-toe
Diffstat (limited to 'bot/exts/evergreen/8bitify.py')
-rw-r--r-- | bot/exts/evergreen/8bitify.py | 2 |
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: |