1
0
Fork 0
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:
Joe R 2023-12-01 22:33:34 -05:00
parent 50e7d65e31
commit 3e5631dbb4

View file

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