From ebe1d6deea2160e79b93a6b8f270f07b80fa0b9e Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sat, 24 Sep 2022 09:12:07 +0300 Subject: [PATCH] Fix Big Bubbler HP --- app/modules/analyzer/stats.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/modules/analyzer/stats.ts b/app/modules/analyzer/stats.ts index 567e28092..caf28a22e 100644 --- a/app/modules/analyzer/stats.ts +++ b/app/modules/analyzer/stats.ts @@ -1093,8 +1093,8 @@ function specialFieldHp( }); return { - baseValue: roundToTwoDecimalPlaces(baseEffect / 100), - value: roundToTwoDecimalPlaces(effect / 100), + baseValue: Math.round(baseEffect / 10), + value: Math.round(effect / 10), modifiedBy: SPECIAL_FIELD_HP_KEY, }; } @@ -1117,8 +1117,8 @@ function specialDeviceHp( }); return { - baseValue: roundToTwoDecimalPlaces(baseEffect / 100), - value: roundToTwoDecimalPlaces(effect / 100), + baseValue: Math.round(baseEffect / 10), + value: Math.round(effect / 10), modifiedBy: SPECIAL_DEVICE_HP_KEY, }; }