From 976e6ea75646d821b78927e74c8cc00026ff6ede Mon Sep 17 00:00:00 2001 From: Joe R Date: Mon, 20 Mar 2023 19:14:06 -0400 Subject: [PATCH] Use separate deck shuffling for Double Fives. --- pysollib/games/glenwood.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pysollib/games/glenwood.py b/pysollib/games/glenwood.py index 82ee6576..9f3d59d8 100644 --- a/pysollib/games/glenwood.py +++ b/pysollib/games/glenwood.py @@ -313,9 +313,8 @@ class DoubleFives(Glenwood): # define stack-groups l.defaultStackGroups() - def _shuffleHook(self, cards): - return self._shuffleHookMoveToTop(cards, - lambda c: (c.deck == 0, None)) + def shuffle(self): + self.shuffleSeparateDecks() def startGame(self): self.base_rank = None