From 9d7df9f3a90402b014b30c3261b6e695d9dfc3c8 Mon Sep 17 00:00:00 2001 From: Joe R Date: Sat, 3 Jun 2023 09:46:26 -0400 Subject: [PATCH] Disabled (useless) hints in Hanoi-type games. Fixes stuck-checking. --- pysollib/games/special/hanoi.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pysollib/games/special/hanoi.py b/pysollib/games/special/hanoi.py index d1b7bfd0..a75a6cf1 100644 --- a/pysollib/games/special/hanoi.py +++ b/pysollib/games/special/hanoi.py @@ -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