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:
parent
7dd72522c4
commit
d3067f2397
1 changed files with 11 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue