1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-03-12 04:07:01 -04:00

Fix endgame hints for Crossword

This commit is contained in:
Joe R 2025-03-03 19:37:54 -05:00
parent 04b7eacfcb
commit 015e860557

View file

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