From 1de339fca972cb229e2037aef32c54ba7e31ed28 Mon Sep 17 00:00:00 2001 From: Joe R Date: Mon, 5 Jul 2021 21:29:54 -0400 Subject: [PATCH] Additional Crossword bugfix. --- pysollib/games/crossword.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pysollib/games/crossword.py b/pysollib/games/crossword.py index f2915704..fec31a49 100644 --- a/pysollib/games/crossword.py +++ b/pysollib/games/crossword.py @@ -139,7 +139,8 @@ class Crossword(Game): def startGame(self): self.moveMove(1, self.s.talon, self.s.rows[24], frames=0) - self.s.rows[24].flipMove() + if self.s.rows[24].cards[0].rank < 10: + self.s.rows[24].flipMove() self.s.talon.fillStack() def isGameWon(self):