1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fixed invalid redo comparison.

This commit is contained in:
Joe R 2022-07-16 10:54:18 -04:00
parent f5dd4be72f
commit 61343e9b54

View file

@ -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)
# ************************************************************************