Move HistoryLength override from OsuStrainSkill to Flashlight

This commit is contained in:
MBmasher
2021-08-11 13:30:40 +10:00
parent cee69eaad0
commit b1d25346a2
2 changed files with 1 additions and 2 deletions

View File

@ -22,6 +22,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
protected override double SkillMultiplier => 0.065;
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.
protected override double StrainValueOf(DifficultyHitObject current)
{

View File

@ -28,8 +28,6 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
/// </summary>
protected virtual double DifficultyMultiplier => 1.06;
protected override int HistoryLength => 10; // Look back for 10 notes is added for the sake of flashlight calculations.
protected OsuStrainSkill(Mod[] mods)
: base(mods)
{