1
0
Fork 0
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:
Joe R 2024-01-03 20:34:55 -05:00
parent f466df1644
commit e1b74be079

View file

@ -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):