fix: alter acc scale

This commit is contained in:
tsunyoku
2022-11-21 17:49:17 +00:00
parent 7c36f3014c
commit a0acc14f34
+1 -3
View File
@@ -439,9 +439,7 @@ impl<'m> OsuPP<'m> {
// Scale with accuracy
let acc_factor = if self.mods.rx() { 0.3 } else { 0.5 };
aim_value *= acc_factor + self.acc.unwrap() / 2.0;
let acc_factor = if self.mods.rx() { 0.96 } else { 0.98 };
aim_value *= acc_factor + attributes.od as f32 * attributes.od as f32 / 2500.0;
aim_value *= 0.98 + attributes.od as f32 * attributes.od as f32 / 2500.0;
aim_value
}