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, }; }