mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Disabled (useless) hints in Hanoi-type games. Fixes stuck-checking.
This commit is contained in:
parent
1d1378ed26
commit
9d7df9f3a9
1 changed files with 5 additions and 1 deletions
|
@ -54,7 +54,11 @@ class TowerOfHanoy_RowStack(BasicRowStack):
|
|||
|
||||
class TowerOfHanoy(Game):
|
||||
RowStack_Class = TowerOfHanoy_RowStack
|
||||
Hint_Class = TowerOfHanoy_Hint
|
||||
# FIXME: Re-enable hints if a good hint class can be built.
|
||||
# But if hints are re-enabled, make sure to disable stuck-checking.
|
||||
# You can't get stuck in Hanoi games.
|
||||
# Hint_Class = TowerOfHanoy_Hint
|
||||
Hint_Class = None
|
||||
|
||||
#
|
||||
# game layout
|
||||
|
|
Loading…
Add table
Reference in a new issue