1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-03-28 21:09:37 +00:00

use event.isComboBreak instead of isComboBreak (#3936)

This commit is contained in:
Til 2025-01-16 17:41:04 -07:00 committed by GitHub
parent 1c2fb43ae1
commit 3aad825f86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2546,7 +2546,7 @@ class PlayState extends MusicBeatSubState
Highscore.tallies.totalNotesHit++;
// Display the hit on the strums
playerStrumline.hitNote(note, !isComboBreak);
playerStrumline.hitNote(note, !event.isComboBreak);
if (event.doesNotesplash) playerStrumline.playNoteSplash(note.noteData.getDirection());
if (note.isHoldNote && note.holdNoteSprite != null) playerStrumline.playNoteHoldCover(note.holdNoteSprite);
vocals.playerVolume = 1;