Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
Snirozu committed Oct 21, 2024
1 parent b7ea1ba commit afaef58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions source/online/FunkinPoints.hx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ class FunkinPoints {
var fp:Float = Math.max(1, 1 + denseNotes) * (notesHit / 100);
fp *= 1 + maxCombo / 1000; // depends on player's note streak
fp *= accuracy / (1 + misses * 0.25); // depends on player's note accuracy
if (playbackRate < 1)
fp *= playbackRate;
return Math.ffloor(fp);
}

Expand Down
2 changes: 1 addition & 1 deletion source/states/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1979,7 +1979,7 @@ 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.00005;
denseNotes += (100 - (songNotes[0] - densLast)) * 0.0001;
}
densLast = songNotes[0];
}
Expand Down

0 comments on commit afaef58

Please sign in to comment.