1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 15:23:14 +08:00

Apply nerf to Flashlight skill on high star maps

This commit is contained in:
MBmasher 2021-08-11 15:54:30 +10:00
parent b1d25346a2
commit 1cadcb43d9

View File

@ -19,7 +19,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
{
}
protected override double SkillMultiplier => 0.065;
protected override double SkillMultiplier => 0.13;
protected override double StrainDecayBase => 0.15;
protected override double DecayWeight => 1.0;
protected override int HistoryLength => 10; // Look back for 10 notes is added for the sake of flashlight calculations.
@ -61,7 +61,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
}
}
return Math.Pow(smallDistNerf * result, 2.5);
return Math.Pow(smallDistNerf * result, 2.0);
}
}
}