Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit 0f8e20f

Browse files
committedMar 21, 2025·
Fixed #16491
1 parent 56dda68 commit 0f8e20f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
 

‎source/states/PlayState.hx

+7-2
Original file line numberDiff line numberDiff line change
@@ -1805,8 +1805,12 @@ class PlayState extends MusicBeatState
18051805
if(startedCountdown)
18061806
{
18071807
var fakeCrochet:Float = (60 / SONG.bpm) * 1000;
1808-
notes.forEachAlive(function(daNote:Note)
1808+
var i:Int = 0;
1809+
while(i < notes.length)
18091810
{
1811+
var daNote:Note = notes.members[i];
1812+
if(daNote == null) continue;
1813+
18101814
var strumGroup:FlxTypedGroup<StrumNote> = playerStrums;
18111815
if(!daNote.mustPress) strumGroup = opponentStrums;
18121816

@@ -1832,7 +1836,8 @@ class PlayState extends MusicBeatState
18321836
daNote.active = daNote.visible = false;
18331837
invalidateNote(daNote);
18341838
}
1835-
});
1839+
if(daNote.exists) i++;
1840+
}
18361841
}
18371842
else
18381843
{

0 commit comments

Comments
 (0)
This repository has been archived.