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:
parent
f5dd4be72f
commit
61343e9b54
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
||||
# ************************************************************************
|
||||
|
|
Loading…
Add table
Reference in a new issue