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 b99089d commit 4cd919dCopy full SHA for 4cd919d
source/funkin/play/PlayState.hx
@@ -2650,7 +2650,7 @@ class PlayState extends MusicBeatSubState
2650
// Process notes on the opponent's side.
2651
for (note in opponentStrumline.notes.members)
2652
{
2653
- if (note == null) continue;
+ if (note == null || !note.alive) continue;
2654
var r = GRhythmUtil.processWindow(note, false);
2655
if (r.botplayHit)
2656
@@ -2700,7 +2700,7 @@ class PlayState extends MusicBeatSubState
2700
// Process notes on the player's side.
2701
for (note in playerStrumline.notes.members)
2702
2703
2704
var r = GRhythmUtil.processWindow(note, !isBotPlayMode);
2705
2706
0 commit comments