mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Corrected erroneous max cards logic in Fourteens game.
This commit is contained in:
parent
50e7d65e31
commit
3e5631dbb4
1 changed files with 2 additions and 1 deletions
|
@ -543,7 +543,8 @@ class Fourteen(Game):
|
|||
dir=0, base_rank=NO_RANK))
|
||||
x, y = l.XM + colsperrow * l.XS, l.YM
|
||||
s.foundations.append(self.Foundation_Class(x, y, self, suit=ANY_SUIT,
|
||||
max_move=0, max_cards=52, base_rank=ANY_RANK))
|
||||
max_move=0, max_cards=(52 * self.gameinfo.decks),
|
||||
base_rank=ANY_RANK))
|
||||
l.createText(s.foundations[0], "s")
|
||||
x, y = self.width - l.XS, self.height - l.YS
|
||||
s.talon = InitialDealTalonStack(x, y, self)
|
||||
|
|
Loading…
Add table
Reference in a new issue