From 7dde34079d7d5f9af316d8f4409de5c47a7df2c4 Mon Sep 17 00:00:00 2001 From: Joe R Date: Mon, 7 Mar 2022 18:35:03 -0500 Subject: [PATCH] Fixed an issue with overlapping stacks. --- pysollib/games/fan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysollib/games/fan.py b/pysollib/games/fan.py index 4416a8be..27d0c89e 100644 --- a/pysollib/games/fan.py +++ b/pysollib/games/fan.py @@ -811,7 +811,7 @@ class School(Fan): RowStack_Class = StackWrapper(RK_RowStack, dir=0, base_rank=NO_RANK) def createGame(self): - Fan.createGame(self, rows=(4, 4, 4, 4), playcards=10, texts=True) + Fan.createGame(self, rows=(5, 5, 5, 1), playcards=10, texts=True) def startGame(self): self._startDealNumRows(2)