From e1b74be079d97c76964e0d4ab95ad9b74e0126e8 Mon Sep 17 00:00:00 2001 From: Joe R Date: Wed, 3 Jan 2024 20:34:55 -0500 Subject: [PATCH] Fix for invalid sequence move in Blue Jacket. --- pysollib/games/picturegallery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysollib/games/picturegallery.py b/pysollib/games/picturegallery.py index 7457255d..dffa3429 100644 --- a/pysollib/games/picturegallery.py +++ b/pysollib/games/picturegallery.py @@ -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):