mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Fix for single card redeal causing a stuck trigger in Matrimony.
This commit is contained in:
parent
32daef2b02
commit
0f26fa283c
1 changed files with 5 additions and 0 deletions
|
@ -544,6 +544,11 @@ class Matrimony(Game):
|
|||
self.s.foundations[7]], frames=0)
|
||||
self._startAndDealRow()
|
||||
|
||||
def getSnapshotHash(self):
|
||||
# Takes the round into account - a single card redeal can result
|
||||
# in an identical snapshot.
|
||||
return Game.getSnapshotHash(self) + str(self.s.talon.round)
|
||||
|
||||
|
||||
# ************************************************************************
|
||||
# * Picture Patience
|
||||
|
|
Loading…
Add table
Reference in a new issue