This commit is contained in:
smoogipoo 2019-04-03 11:38:48 +09:00
parent 21e62c37d8
commit 5566c4881a
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ protected override double StrainValueOf(DifficultyHitObject current)
float distanceMoved = playerPosition - lastPlayerPosition.Value;
double weightedStrainTime = catchCurrent.StrainTime + 18;
double weightedStrainTime = catchCurrent.StrainTime + 10 + (8 / catchCurrent.ClockRate);
double distanceAddition = (Math.Pow(Math.Abs(distanceMoved), 1.3) / 510);
double sqrtStrain = Math.Sqrt(weightedStrainTime);