1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

fix ncards

This commit is contained in:
Shlomi Fish 2020-06-16 22:35:59 +03:00
parent fee9f6e20e
commit f998b53d79

View file

@ -1107,7 +1107,7 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
src = ord(m.s[1])
dest = ord(m.s[2])
hints.append([
1, # ord(m.s[3]),
(ord(m.s[3]) if type_ == 0 else 1),
(game.s.rows if (type_ in [0, 1, 4])
else game.s.reserves)[src],
(game.s.rows[dest] if (type_ in [0, 2])