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

Fixed Three Shuffles and a Draw draw sound effect to not play during a demo.

This commit is contained in:
Joe R 2023-04-01 16:13:21 -04:00
parent 3182cc4b88
commit 644f55e4f7

View file

@ -279,7 +279,7 @@ class ThreeShufflesAndADraw_RowStack(SS_RowStack):
game.updateStackMove(r, 3 | 64) # update model
game.updateStackMove(r, 1 | 16) # update view for redo
# 2) second card from self to foundation/row
if 1 or not game.demo:
if not game.demo:
game.playSample("drop", priority=200)
if frames == 0:
frames = -1