diff options
author | Colen <54497873+GTNH-Colen@users.noreply.github.com> | 2022-02-12 06:13:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-12 00:13:13 -0600 |
commit | 4ed15f591c6eb473e58a2c889af77489da82dde6 (patch) | |
tree | 5661fa98dedd9987e319d0eb11807d23cd8a1776 /src | |
parent | b2230b98fd6ed70d585a1bf620c1bb81483779a6 (diff) | |
download | GT5-Unofficial-4ed15f591c6eb473e58a2c889af77489da82dde6.tar.gz GT5-Unofficial-4ed15f591c6eb473e58a2c889af77489da82dde6.tar.bz2 GT5-Unofficial-4ed15f591c6eb473e58a2c889af77489da82dde6.zip |
Fix separatorl. (#932)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/api/util/GT_Utility.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/util/GT_Utility.java b/src/main/java/gregtech/api/util/GT_Utility.java index 696d0bbf51..c3f28d8c46 100644 --- a/src/main/java/gregtech/api/util/GT_Utility.java +++ b/src/main/java/gregtech/api/util/GT_Utility.java @@ -2386,7 +2386,7 @@ public class GT_Utility { numberFormat.setMaximumFractionDigits(2); numberFormat.setRoundingMode(RoundingMode.HALF_UP); DecimalFormatSymbols decimalFormatSymbols = numberFormat.getDecimalFormatSymbols(); - decimalFormatSymbols.setGroupingSeparator(' ');//use international separator for best clarity, should also fix locales using NBSP + decimalFormatSymbols.setGroupingSeparator(',');// Use sensible separator for best clarity. numberFormat.setDecimalFormatSymbols(decimalFormatSymbols); return numberFormat; }); |