mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Fixed crash in Decade hints.
This commit is contained in:
parent
48bb9d650b
commit
87c8160761
1 changed files with 3 additions and 2 deletions
|
@ -400,8 +400,9 @@ class Decade_Hint(AbstractHint):
|
|||
total = 0
|
||||
count = 0
|
||||
for k in range(i, j):
|
||||
total += min(self.game.s.rows[k].cards[0].rank + 1, 10)
|
||||
count += 1
|
||||
if self.game.s.rows[k].cards:
|
||||
total += min(self.game.s.rows[k].cards[0].rank + 1, 10)
|
||||
count += 1
|
||||
if total in [10, 20, 30] and count > 1:
|
||||
self.addHint(5000, 1, rows[i], rows[j - 1])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue