Rectify null value call

tired programming is never a good idea
This commit is contained in:
Jay L 2022-05-16 14:48:39 +10:00
parent c7ec95c0d0
commit db6abd86f0
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public double StrainValueOf(DifficultyHitObject current)
}
double objectStrain = 0.5;
objectStrain += speedBonus(current.StartTime - previousHitTime);
objectStrain += speedBonus(current.StartTime - previousHitTime.Value);
previousHitTime = current.StartTime;
return objectStrain;
}