1
0
Fork 0
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:
Joe R 2023-06-03 09:46:26 -04:00
parent 1d1378ed26
commit 9d7df9f3a9

View file

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