From 976a5767aabb5b612261a190ab4de33e838887b5 Mon Sep 17 00:00:00 2001 From: skomoroh Date: Sun, 28 May 2006 23:55:49 +0000 Subject: [PATCH] - corrected rules of Whitehead git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@2 efabe8c0-fbe8-4139-b769-b5e6d273206e --- pysollib/games/klondike.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pysollib/games/klondike.py b/pysollib/games/klondike.py index f24009e5..0c00c718 100644 --- a/pysollib/games/klondike.py +++ b/pysollib/games/klondike.py @@ -163,8 +163,12 @@ class ThumbAndPouch(Klondike): # // Whitehead # ************************************************************************/ +class Whitehead_RowStack(SS_RowStack): + def _isAcceptableSequence(self, cards): + return isSameColorSequence(cards, self.cap.mod, self.cap.dir) + class Whitehead(Klondike): - RowStack_Class = SC_RowStack + RowStack_Class = Whitehead_RowStack Hint_Class = CautiousDefaultHint def createGame(self):