From 015e8605578ccffb0ac815392ca1bf6b0d391cab Mon Sep 17 00:00:00 2001 From: Joe R Date: Mon, 3 Mar 2025 19:37:54 -0500 Subject: [PATCH] Fix endgame hints for Crossword --- pysollib/games/crossword.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pysollib/games/crossword.py b/pysollib/games/crossword.py index ff7fa7e4..d9e01981 100644 --- a/pysollib/games/crossword.py +++ b/pysollib/games/crossword.py @@ -46,6 +46,11 @@ class Crossword_Hint(AbstractHint): r = rows[i] if r.cards: continue + if len(game.s.talon.cards) == 0: + for s in game.s.reserves: + if game.isValidPlay(r.id, s.getCard().rank + 1): + self.addHint(5000, 1, s, r) + continue if game.isValidPlay(r.id, game.s.talon.getCard().rank + 1): # TODO: Check a few moves ahead to get better hints. self.addHint(5000, 1, game.s.talon, r)