diff --git a/exp_legacy/module/modules/gui/production.lua b/exp_legacy/module/modules/gui/production.lua index c8432289..38573be4 100644 --- a/exp_legacy/module/modules/gui/production.lua +++ b/exp_legacy/module/modules/gui/production.lua @@ -35,7 +35,7 @@ local function format_n(n) for letter, limit in pairs(suffix_list) do if math.abs(n) >= limit then - n = string.format("%.1f", n / limit) + n = string.format("%.2f", n / limit) suffix = letter break end