General fixes

This commit is contained in:
smoogipoo
2019-04-02 07:28:04 +09:00
parent 0c76c07731
commit 21e62c37d8
3 changed files with 7 additions and 11 deletions

View File

@ -25,7 +25,6 @@ namespace osu.Game.Rulesets.Catch.Difficulty.Preprocessing
/// </summary>
public readonly double StrainTime;
public readonly double ClockRate;
public readonly double HalfCatcherWidth;
public CatchDifficultyHitObject(HitObject hitObject, HitObject lastObject, double clockRate, float halfCatcherWidth)
: base(hitObject, lastObject, clockRate)
@ -39,8 +38,6 @@ namespace osu.Game.Rulesets.Catch.Difficulty.Preprocessing
// Every strain interval is hard capped at the equivalent of 375 BPM streaming speed as a safety measure
StrainTime = Math.Max(40, DeltaTime);
ClockRate = clockRate;
HalfCatcherWidth = halfCatcherWidth;
}
}
}