1
0
Fork 0
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:
Joe R 2021-09-08 21:53:33 -04:00
parent 48bb9d650b
commit 87c8160761

View file

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