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:
parent
04b7eacfcb
commit
015e860557
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue