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

Fixed error in Hit or Miss game.

This commit is contained in:
Joe R 2022-07-16 22:57:07 -04:00
parent 61343e9b54
commit f968a2c9e4
2 changed files with 1 additions and 8 deletions

View file

@ -13,7 +13,3 @@ matches the rank you declared, that is a "Hit", and the card may be moved
to the foundation. Otherwise, it is a "Miss". You can continue to redeal
as many times as you need, until you go through the entire deck twice in a
row without getting a single "Hit".
<h3>Notes</h3>
<p>
<i>Autodrop</i> is disabled for this game.

View file

@ -83,7 +83,7 @@ class HitOrMiss_Waste(WasteStack):
game.deadDeals = 0
game.saveStateMove(1 | 16) # for redo
game.leaveState(old_state)
WasteStack.moveMove(ncards, to_stack, frames, shadow)
WasteStack.moveMove(self, ncards, to_stack, frames, shadow)
game.s.talon.dealCards()
@ -154,9 +154,6 @@ class HitOrMiss(Game):
# save vars (for undo/redo)
return [self.rank, self.deadDeals]
def getAutoStacks(self, event=None):
return ((), (), ())
# register the game
registerGame(GameInfo(774, HitOrMiss, "Hit or Miss",