diff --git a/source/states/PlayState.hx b/source/states/PlayState.hx index b9bf181c..8656123d 100644 --- a/source/states/PlayState.hx +++ b/source/states/PlayState.hx @@ -2579,7 +2579,7 @@ class PlayState extends MusicBeatState while (unspawnNotes.length > 0 && unspawnNotes[0].strumTime - Conductor.songPosition < time) { var dunceNote:Note = unspawnNotes[0]; - notes.unshift(dunceNote); + notes.insert(0, dunceNote); dunceNote.spawned = true; callOnLuas('onSpawnNote', [0, dunceNote.noteData, dunceNote.noteType, dunceNote.isSustainNote, dunceNote.strumTime]);