This commit is contained in:
tsunyoku
2024-07-13 14:41:48 +01:00
parent bc66e6b227
commit a90cad3cb7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -264,7 +264,7 @@ impl<'m> OsuPP<'m> {
if streams_nerf < 1.09 {
let acc_factor = (1.0 - self.acc.unwrap()).abs();
acc_depression = (0.86 - acc_factor).max(0.5);
acc_depression = (0.8 - acc_factor).max(0.5);
if acc_depression > 0.0 {
speed_value *= acc_depression;
+1 -1
View File
@@ -2,7 +2,7 @@ use super::{DifficultyObject, SkillKind};
use std::cmp::Ordering;
const SPEED_SKILL_MULTIPLIER: f32 = 900.0;
const SPEED_SKILL_MULTIPLIER: f32 = 1200.0;
const SPEED_STRAIN_DECAY_BASE: f32 = 0.3;
const AIM_SKILL_MULTIPLIER: f32 = 26.25;