From bbceff0f5dafcfc18237d391da56790b57b74eee Mon Sep 17 00:00:00 2001 From: Joe Wreschnig Date: Thu, 18 Mar 2010 01:40:09 -0700 Subject: [PATCH] Wait: Actually don't do anything special for wait frames of 0, as break-now-continue-immediately-next-frame is useful. --- bulletml/impl.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bulletml/impl.py b/bulletml/impl.py index 8508896..0548b9d 100644 --- a/bulletml/impl.py +++ b/bulletml/impl.py @@ -245,8 +245,7 @@ class Action(object): elif isinstance(action, parser.Wait): self.wait_frames = action(s_params, rank) - if self.wait_frames: - break + break elif isinstance(action, parser.Vanish): owner.vanish() -- 2.20.1