Fix Big Bubbler HP

This commit is contained in:
Kalle
2022-09-24 09:12:07 +03:00
parent be0b4ebc29
commit ebe1d6deea

View File

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