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. + +
+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)