diff --git a/pysollib/stack.py b/pysollib/stack.py index 193a721d0..71abfb87e 100644 --- a/pysollib/stack.py +++ b/pysollib/stack.py @@ -1689,8 +1689,9 @@ def dealToStacks(self, stacks, flip=1, reverse=0, frames=-1): if flip: self.game.flipMove(self) self.game.moveMove(1, self, r, frames=frames) - self.game.top.update_idletasks() - self.game.top.busyUpdate() + if frames > 0: + self.game.top.update_idletasks() + self.game.top.busyUpdate() self.game.leaveState(old_state) if TOOLKIT == 'kivy': self.game.top.waitAnimation()