Remove NF pp penalty for RX, fix the wrong penalty value for non-rx c… (#9)

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

* Remove the whole NF relax penalty block
This commit is contained in:
Stas
2024-04-14 16:43:17 +03:00
committed by GitHub
parent a8b4eaffb2
commit 5c97207f25
-5
View File
@@ -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 *=