Skip to content

Commit

Permalink
it felt off
Browse files Browse the repository at this point in the history
  • Loading branch information
TehPuertoRicanSpartan authored Dec 31, 2022
1 parent c17b329 commit e49eda4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/editors/ChartingState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -2023,7 +2023,7 @@ class ChartingState extends MusicBeatState
var noteDataToCheck:Int = note.noteData;
if(noteDataToCheck > -1 && note.mustPress != _song.notes[curSec].mustHitSection) noteDataToCheck += 4;
strumLineNotes.members[noteDataToCheck].playAnim('confirm', true);
strumLineNotes.members[noteDataToCheck].resetAnim = ((note.sustainLength / 1000) / playbackSpeed) + 0.15;
strumLineNotes.members[noteDataToCheck].resetAnim = ((note.sustainLength / 1000) / playbackSpeed + 0.15) / playbackSpeed;
if(!playedSound[data]) {
if((playSoundBf.checked && note.mustPress) || (playSoundDad.checked && !note.mustPress)){
var soundToPlay = 'hitsound';
Expand Down

0 comments on commit e49eda4

Please sign in to comment.