Increase special damage distance decimals shown

This commit is contained in:
Kalle 2023-12-03 13:02:10 +02:00
parent 0439222c82
commit b583afaf97

View File

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