Merge pull request #1545 from prokube/patch-2

fix the arrows going wowowowowowowowowo
This commit is contained in:
Kade M 2021-08-02 14:46:33 -07:00 committed by GitHub
commit d0821fb2b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3922,9 +3922,9 @@ class PlayState extends MusicBeatState
playerStrums.forEach(function(spr:FlxSprite)
{
if (keys[spr.ID] && spr.animation.curAnim.name != 'confirm')
spr.animation.play('pressed');
spr.animation.play('pressed', false);
if (!keys[spr.ID])
spr.animation.play('static');
spr.animation.play('static', false);
if (spr.animation.curAnim.name == 'confirm' && !curStage.startsWith('school'))
{