From 8987bbb5bbfbbdf2f75541e160f7e850f739f8f8 Mon Sep 17 00:00:00 2001 From: Gordon Shumway <39967334+oddluck@users.noreply.github.com> Date: Fri, 22 Mar 2019 10:43:13 -0400 Subject: [PATCH] switch slow and insane presets --- ASCII/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ASCII/plugin.py b/ASCII/plugin.py index 4693cf2..8a29995 100644 --- a/ASCII/plugin.py +++ b/ASCII/plugin.py @@ -203,12 +203,12 @@ class ASCII(callbacks.Plugin): c2 = sRGBColor(c2[0],c2[1],c2[2]) c2 = convert_color(c2, LabColor) c2 = (c2.lab_l, c2.lab_a, c2.lab_b) - delta_e = delta_E_CIE2000(c1, c2) + delta_e = delta_E_CMC(c1, c2) else: c2 = sRGBColor(c2[0],c2[1],c2[2]) c2 = convert_color(c2, LabColor) c2 = (c2.lab_l, c2.lab_a, c2.lab_b) - delta_e = delta_E_CMC(c1, c2) + delta_e = delta_E_CIE2000(c1, c2) return delta_e def img(self, irc, msg, args, optlist, url):