Skip to content

Commit

Permalink
h
Browse files Browse the repository at this point in the history
  • Loading branch information
Snirozu committed Oct 21, 2024
1 parent afaef58 commit 824a4a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/states/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1978,8 +1978,8 @@ class PlayState extends MusicBeatState
}

if (songNotes[2] <= 0 && playsAsBF() ? gottaHitNote : !gottaHitNote) {
if (densLast != -1 && songNotes[0] - densLast > 1 && songNotes[0] - densLast <= 100) {
denseNotes += (100 - (songNotes[0] - densLast)) * 0.0001;
if (densLast != -1 && songNotes[0] - densLast > 1 && songNotes[0] - densLast <= 150) {
denseNotes += (150 - (songNotes[0] - densLast)) * 0.00005;
}
densLast = songNotes[0];
}
Expand Down

0 comments on commit 824a4a4

Please sign in to comment.