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

EightCards:

- index error on click to empty talon fixed.
- move pair when second click goes to reserve stack too.
This commit is contained in:
lufebe16 2024-01-11 11:56:43 +01:00
parent 7dd72522c4
commit d3067f2397

View file

@ -888,6 +888,16 @@ class EightCards_RowStack(Elevens_RowStack):
return False
# second selection to reserves stack: should also move the
# pair - not ?
def moveMove(self, ncards, to_stack, frames=-1, shadow=-1):
if to_stack in self.game.s.rows + self.game.s.reserves:
self._dropPairMove(ncards, to_stack, frames=-1, shadow=shadow)
else:
self.game.moveMove(ncards, self, to_stack,
frames=frames, shadow=shadow)
self.fillStack()
class EightCards_Foundation(AbstractFoundationStack):
def acceptsCards(self, from_stack, cards):
@ -899,6 +909,7 @@ class EightCards_Foundation(AbstractFoundationStack):
class EightCards_Talon(AutoDealTalonStack):
def canDealCards(self):
if len(self.cards) < 1: return False # noqa E701
return self.game.draws > 0 and len(self.game.s.reserves[0].cards) < 1
def dealCards(self, sound=False):