Skip to content

Commit

Permalink
Remove NF pp penalty for RX, fix the wrong penalty value for non-rx c… (
Browse files Browse the repository at this point in the history
#9)

* Remove NF pp penalty for RX, fix the wrong penalty value for non-rx cases

* Remove the whole NF relax penalty block
  • Loading branch information
Niotid authored Apr 14, 2024
1 parent a8b4eaf commit 5c97207
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/osu_2019/pp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,6 @@ impl<'m> OsuPP<'m> {

let effective_miss_count = self.calculate_effective_miss_count();

// NF penalty
if self.mods.nf() {
multiplier *= 0.9_f32.max(1.0 - 0.2 * effective_miss_count);
}

// SO penalty
if self.mods.so() {
multiplier *=
Expand Down

0 comments on commit 5c97207

Please sign in to comment.