From b583afaf9709c5bbf090002d5d2329410e4de652 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sun, 3 Dec 2023 13:02:10 +0200 Subject: [PATCH] Increase special damage distance decimals shown --- app/features/build-analyzer/core/stats.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/features/build-analyzer/core/stats.ts b/app/features/build-analyzer/core/stats.ts index ba2092e81..406417bad 100644 --- a/app/features/build-analyzer/core/stats.ts +++ b/app/features/build-analyzer/core/stats.ts @@ -1450,8 +1450,8 @@ function specialDamageDistance( }); return { - baseValue: roundToNDecimalPlaces(baseEffect), - value: roundToNDecimalPlaces(effect), + baseValue: roundToNDecimalPlaces(baseEffect, 4), + value: roundToNDecimalPlaces(effect, 4), modifiedBy: SPECIAL_DAMAGE_DISTANCE_KEY, }; }