feat: scale aim by accuracy more harsh

This commit is contained in:
tsunyoku
2022-11-20 15:46:08 +00:00
parent 3284410843
commit 6afdf94bb3
+1 -1
View File
@@ -432,7 +432,7 @@ impl<'m> OsuPP<'m> {
}
// Scale with accuracy
let acc_factor = if self.mods.rx() { 0.4 } else { 0.5 };
let acc_factor = if self.mods.rx() { 0.3 } else { 0.5 };
aim_value *= acc_factor + self.acc.unwrap() / 2.0;
aim_value *= 0.98 + attributes.od as f32 * attributes.od as f32 / 2500.0;