This commit is contained in:
Prokube 2021-08-02 09:35:34 -07:00 committed by GitHub
parent 193fcc398a
commit f18d6d904a
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'))
{