mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
fix ncards
This commit is contained in:
parent
fee9f6e20e
commit
f998b53d79
1 changed files with 1 additions and 1 deletions
|
@ -1107,7 +1107,7 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
|
||||||
src = ord(m.s[1])
|
src = ord(m.s[1])
|
||||||
dest = ord(m.s[2])
|
dest = ord(m.s[2])
|
||||||
hints.append([
|
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])
|
(game.s.rows if (type_ in [0, 1, 4])
|
||||||
else game.s.reserves)[src],
|
else game.s.reserves)[src],
|
||||||
(game.s.rows[dest] if (type_ in [0, 2])
|
(game.s.rows[dest] if (type_ in [0, 2])
|
||||||
|
|
Loading…
Add table
Reference in a new issue