Skip to content

Commit

Permalink
bro what the fuck
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Nov 27, 2024
1 parent aa397d1 commit 80c311a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/funkin/data/song/SongDataUtils.hx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class SongDataUtils
*/
public inline static function addNotes(notes:Array<SongNoteData>, addend:Array<SongNoteData>):Array<SongNoteData>
{
return SongNoteDataUtils.concatNoOverlap(notes, addend, ChartEditorState.STACK_NOTE_THRESHOLD, true);
return SongNoteDataUtils.concatNoOverlap(notes, addend, ChartEditorState.STACK_NOTE_THRESHOLD);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class PasteItemsCommand implements ChartEditorCommand
addedEvents = SongDataUtils.clampSongEventData(addedEvents, 0.0, msCutoff);

state.currentSongChartNoteData = SongNoteDataUtils.concatOverwrite(state.currentSongChartNoteData, addedNotes, removedNotes,
ChartEditorState.stackNoteThreshold);
ChartEditorState.STACK_NOTE_THRESHOLD);
state.currentSongChartEventData = state.currentSongChartEventData.concat(addedEvents);
state.currentNoteSelection = addedNotes.copy();
state.currentEventSelection = addedEvents.copy();
Expand Down

0 comments on commit 80c311a

Please sign in to comment.