From be0bb0b803888d4ac341078629e7be13af268711 Mon Sep 17 00:00:00 2001 From: Mike Welsh Date: Tue, 17 Sep 2019 17:03:59 -0700 Subject: [PATCH] core: Fix looping movieclips --- core/src/movie_clip.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/movie_clip.rs b/core/src/movie_clip.rs index 55799ff1b..1d891b9fc 100644 --- a/core/src/movie_clip.rs +++ b/core/src/movie_clip.rs @@ -242,6 +242,7 @@ impl<'gc> MovieClip<'gc> { // Specifically, object that existed on frame 1 should not be destroyed // and recreated. self.run_goto(context, 1); + return; } else { // Single frame clips do not play. self.stop();