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

Fixed error in Rosamund's Bower auto-deal logic.

This commit is contained in:
Joe R 2024-01-06 23:07:54 -05:00
parent 725ee0dcaa
commit a35f0ad2f5

View file

@ -1486,6 +1486,11 @@ class RosamundsBower(Game):
return self._shuffleHookMoveToTop( return self._shuffleHookMoveToTop(
cards, lambda c: (c.id in (23, 37, 25), c.id), 3) cards, lambda c: (c.id in (23, 37, 25), c.id), 3)
def _autoDeal(self, sound=True):
# only autodeal if there are cards in the talon.
if len(self.s.talon.cards) > 0:
return Game._autoDeal(self, sound=sound)
# register the game # register the game
registerGame(GameInfo(54, RoyalCotillion, "Royal Cotillion", registerGame(GameInfo(54, RoyalCotillion, "Royal Cotillion",