fix botplay strums

This commit is contained in:
KadeDeveloper 2021-08-11 18:24:24 -07:00
parent 2ea025fcc9
commit 8034f3134f

View File

@ -4349,13 +4349,16 @@ class PlayState extends MusicBeatState
saveJudge.push(note.rating);
}
playerStrums.forEach(function(spr:FlxSprite)
if (!PlayStateChangeables.botPlay)
{
if (Math.abs(note.noteData) == spr.ID)
playerStrums.forEach(function(spr:FlxSprite)
{
spr.animation.play('confirm', true);
}
});
if (Math.abs(note.noteData) == spr.ID)
{
spr.animation.play('confirm', true);
}
});
}
if (!note.isSustainNote)
{