Skip to content

Commit

Permalink
oi nvm
Browse files Browse the repository at this point in the history
  • Loading branch information
Snirozu committed Dec 8, 2024
1 parent ebd5c6d commit f9d0327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/states/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down

0 comments on commit f9d0327

Please sign in to comment.