1/4 block: add mising inversions

This commit is contained in:
Gordon Shumway 2019-06-17 02:35:53 -04:00 committed by GitHub
parent b7d05d0bc9
commit dbbdf97272
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -696,6 +696,9 @@ class ASCII(callbacks.Plugin):
elif row1 != row2:
gsval = ""
color = "\x03{0},{1}".format(int(row1), int(row2))
elif col1 != col2:
gsval = ""
color = "\x03{0},{1}".format(int(row1), int(row2))
elif row1 == row2:
gsval = " "
color = "\x030,{0}".format(int(row1))
@ -705,6 +708,12 @@ class ASCII(callbacks.Plugin):
elif gsval == "" and color == "{0},{1}".format(old_color.split(',')[1], old_color.split(',')[0]):
gsval = ""
aimg[k] += "{0}".format(gsval)
elif gsval == "" and color == "{0},{1}".format(old_color.split(',')[1], old_color.split(',')[0]):
gsval = ""
aimg[k] += "{0}".format(gsval)
elif gsval == "" and color == "{0},{1}".format(old_color.split(',')[1], old_color.split(',')[0]):
gsval = ""
aimg[k] += "{0}".format(gsval)
elif gsval == "" and color == "{0},{1}".format(old_color.split(',')[1], old_color.split(',')[0]):
gsval = ""
aimg[k] += "{0}".format(gsval)