From cb1d947534933d3145b88288aaf1280568b8b8f1 Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Tue, 21 Feb 2023 20:42:36 +0000 Subject: [PATCH] Bugfix * Fixed stuck animation for looping animations --- game/scripts/doll/chibi.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/scripts/doll/chibi.rpy b/game/scripts/doll/chibi.rpy index a3077b2d..e3602a72 100644 --- a/game/scripts/doll/chibi.rpy +++ b/game/scripts/doll/chibi.rpy @@ -114,7 +114,7 @@ init 5 python: rv = renpy.Render(frame_width, frame_height) rv.blit(cr.subsurface((frame_x, frame_y, frame_width, frame_height)), (0, 0)) - if st > self.atl_time_total: + if not self.atl_looping and st > self.atl_time_total: renpy.timeout(0) elif not renpy.game.less_updates: renpy.redraw(self, interval - time)