diff --git a/src/module/handlebar-helpers/currency.mjs b/src/module/handlebar-helpers/currency.mjs index 3f83b42c..74304326 100644 --- a/src/module/handlebar-helpers/currency.mjs +++ b/src/module/handlebar-helpers/currency.mjs @@ -4,7 +4,7 @@ function currency(st) { // internally the price is always given in Silver // so we need to inflate the value of price by 100 to be able to divide beginning from Heller - const baseValue = st * 100 + const baseValue = Math.round(st * 100) // then we can regex over it