1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Disable autodrop for Samegame (#386)

This commit is contained in:
Joe R 2024-10-05 10:01:49 -04:00
parent 83289d5432
commit dfd3b063dd
2 changed files with 7 additions and 0 deletions

View file

@ -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.
<p>
The game is won if you manage to clear all of the tiles.
<h3>Notes</h3>
<p>
<i>Autodrop</i> is disabled for this game.

View file

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