We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e645db commit a0fff1fCopy full SHA for a0fff1f
source/funkin/play/PlayState.hx
@@ -2695,7 +2695,7 @@ class PlayState extends MusicBeatSubState
2695
// Process notes on the opponent's side.
2696
for (note in opponentStrumline.notes.members)
2697
{
2698
- if (note == null) continue;
+ if (note == null || !note.alive) continue;
2699
var r = GRhythmUtil.processWindow(note, false);
2700
if (r.botplayHit)
2701
@@ -2745,7 +2745,7 @@ class PlayState extends MusicBeatSubState
2745
// Process notes on the player's side.
2746
for (note in playerStrumline.notes.members)
2747
2748
2749
var r = GRhythmUtil.processWindow(note, !isBotPlayMode);
2750
2751
0 commit comments