From 3a748bde199d1bbb3bfd5e951342d29540a8556b Mon Sep 17 00:00:00 2001 From: Spel0 <75626813+Spel0@users.noreply.github.com> Date: Tue, 10 Aug 2021 19:04:38 +0300 Subject: [PATCH] arrows anim fix --- source/PlayState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index 26bb9d2..fa9cc3f 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -3972,7 +3972,7 @@ class PlayState extends MusicBeatState { playerStrums.forEach(function(spr:FlxSprite) { - if (keys[spr.ID] && spr.animation.curAnim.name != 'confirm') + if (keys[spr.ID] && spr.animation.curAnim.name != 'confirm' && spr.animation.curAnim.name != 'pressed') spr.animation.play('pressed', false); if (!keys[spr.ID]) spr.animation.play('static', false);