Fix spacing

This commit is contained in:
smoogipoo 2020-12-08 12:12:53 +09:00
parent cf3fbe0b0b
commit 57b7ef88e2
1 changed files with 2 additions and 2 deletions

View File

@ -101,9 +101,9 @@ private double computeAimValue()
double approachRateFactor = 0.0;
if (Attributes.ApproachRate > 10.33)
approachRateFactor += 0.4 * (Attributes.ApproachRate - 10.33);
approachRateFactor += 0.4 * (Attributes.ApproachRate - 10.33);
else if (Attributes.ApproachRate < 8.0)
approachRateFactor += 0.1 * (8.0 - Attributes.ApproachRate);
approachRateFactor += 0.1 * (8.0 - Attributes.ApproachRate);
aimValue *= 1.0 + Math.Min(approachRateFactor, approachRateFactor * (totalHits / 1000.0));