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:
parent
02bae742f2
commit
c5b941d95a
1 changed files with 5 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue