From f5d23e9a072c2c003e0b976ded76b378dc45052e Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Wed, 12 Feb 2025 22:42:01 +0900 Subject: [PATCH] . --- exp_legacy/module/modules/gui/production.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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