diff --git a/source/states/PlayState.hx b/source/states/PlayState.hx index 64e92b89..08239797 100644 --- a/source/states/PlayState.hx +++ b/source/states/PlayState.hx @@ -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]; }