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

* fixed game Q.C.

git-svn-id: https://pysolfc.svn.sourceforge.net/svnroot/pysolfc/PySolFC/trunk@60 39dd0a4e-7c14-0410-91b3-c4f2d318f732
This commit is contained in:
skomoroh 2006-08-28 21:23:52 +00:00
parent 5d479316e3
commit 58704aa73a

View file

@ -899,21 +899,20 @@ class Q_C_(Klondike):
return 0
def fillAll(self):
# rows
for r in self.s.rows:
if self.fillOne(r):
self.fillAll()
return
# waste
# fill
if not self.s.waste.cards and self.s.talon.cards:
self.s.talon.dealCards()
if self.fillOne(self.s.waste):
self.fillAll()
def fillStack(self, stack):
if stack in self.s.rows:
for stack in self.s.rows:
if not stack.cards and self.s.waste.cards:
self.s.waste.moveMove(1, stack)
# move to foundations
if self.fillOne(self.s.waste):
self.fillAll()
for stack in self.s.rows:
if self.fillOne(stack):
self.fillAll()
def fillStack(self, stack):
self.fillAll()
shallHighlightMatch = Game._shallHighlightMatch_SS