Skip to content

Commit

Permalink
Update ChartingState.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Aug 11, 2024
1 parent 594c8f9 commit 0014b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/states/ChartingState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class ChartingState extends ExtendableState {

function deleteNote(note:Note):Void {
for (i in song.notes[curSection].sectionNotes)
if (i.strum == note.strum && i.noteData % 4 == getNoteIndex(note.dir))
if (i.noteStrum == note.strum && i.noteData % 4 == getNoteIndex(note.dir))
song.notes[curSection].sectionNotes.remove(i);

/*
Expand Down

0 comments on commit 0014b09

Please sign in to comment.