From 644f55e4f7a3a7f8013efa510d0029276908e38c Mon Sep 17 00:00:00 2001 From: Joe R Date: Sat, 1 Apr 2023 16:13:21 -0400 Subject: [PATCH] Fixed Three Shuffles and a Draw draw sound effect to not play during a demo. --- pysollib/games/fan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysollib/games/fan.py b/pysollib/games/fan.py index cac33c83..86ef1c39 100644 --- a/pysollib/games/fan.py +++ b/pysollib/games/fan.py @@ -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