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:
parent
725ee0dcaa
commit
a35f0ad2f5
1 changed files with 5 additions and 0 deletions
|
@ -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",
|
||||||
|
|
Loading…
Add table
Reference in a new issue