From 61343e9b54c49a97af6b49a7774294420181e62f Mon Sep 17 00:00:00 2001 From: Joe R Date: Sat, 16 Jul 2022 10:54:18 -0400 Subject: [PATCH] Fixed invalid redo comparison. --- pysollib/move.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysollib/move.py b/pysollib/move.py index 126a2096..90129449 100644 --- a/pysollib/move.py +++ b/pysollib/move.py @@ -473,7 +473,7 @@ class AShuffleStackMove(AtomicMove): def cmpForRedo(self, other): return (cmp(self.stack_id, other.stack_id) or cmp(self.card_ids, other.card_ids) or - cmp(self.state, other.state)) + self.state != other.state) # ************************************************************************