fix accuracy scaling on relax aim pp

This commit is contained in:
James Wilson
2024-11-02 14:21:36 +00:00
committed by tsunyoku
parent 82839a3f5b
commit dfd656752b
+1 -2
View File
@@ -389,8 +389,7 @@ impl<'m> OsuPP<'m> {
aim_value *= base_buff;
}
// Scale with accuracy
aim_value *= 0.3 + self.acc.unwrap() / 2.0;
aim_value *= self.acc.unwrap();
aim_value *= 0.98 + attributes.od as f32 * attributes.od as f32 / 2500.0;
aim_value