From dfd3b063dd922844a601de077a2364e400235ed0 Mon Sep 17 00:00:00 2001 From: Joe R Date: Sat, 5 Oct 2024 10:01:49 -0400 Subject: [PATCH] Disable autodrop for Samegame (#386) --- html-src/rules/samegame.html | 4 ++++ pysollib/games/special/samegame.py | 3 +++ 2 files changed, 7 insertions(+) diff --git a/html-src/rules/samegame.html b/html-src/rules/samegame.html index 9c2d09bb..d26726e3 100644 --- a/html-src/rules/samegame.html +++ b/html-src/rules/samegame.html @@ -15,3 +15,7 @@ fill in the gap. If a column is emptied, the adjacent columns will slide to the left to fill in the gap.

The game is won if you manage to clear all of the tiles. + +

Notes

+

+Autodrop is disabled for this game. diff --git a/pysollib/games/special/samegame.py b/pysollib/games/special/samegame.py index 8500f291..86c0303b 100644 --- a/pysollib/games/special/samegame.py +++ b/pysollib/games/special/samegame.py @@ -244,6 +244,9 @@ class AbstractSamegameGame(Game): self.s.rows[r - (numrows * emptycols)], frames=0) + def getAutoStacks(self, event=None): + return ((), (), ()) + class Samegame3_20x10(AbstractSamegameGame): L = (20, 10)