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

- corrected rules of Whitehead

git-svn-id: https://pysolfc.svn.sourceforge.net/svnroot/pysolfc/PySolFC/trunk@2 39dd0a4e-7c14-0410-91b3-c4f2d318f732
This commit is contained in:
skomoroh 2006-05-28 23:55:49 +00:00
parent 02bae742f2
commit c5b941d95a

View file

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