mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Fix for invalid sequence move in Blue Jacket.
This commit is contained in:
parent
f466df1644
commit
e1b74be079
1 changed files with 1 additions and 1 deletions
|
@ -616,7 +616,7 @@ class ThreeUp(VirginiaReel):
|
|||
|
||||
class BlueJacket_RowStack(BasicRowStack):
|
||||
def acceptsCards(self, from_stack, cards):
|
||||
return len(self.cards) == 0
|
||||
return len(self.cards) == 0 and len(cards) == 1
|
||||
|
||||
|
||||
class BlueJacket(VirginiaReel):
|
||||
|
|
Loading…
Add table
Reference in a new issue