From f989be56db83fc95012ef216340278f18611a1f2 Mon Sep 17 00:00:00 2001 From: Ean Milligan Date: Tue, 5 Aug 2025 16:46:30 -0400 Subject: [PATCH] Make simnom iterations performed per roll more readable --- src/artigen/artigen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/artigen/artigen.ts b/src/artigen/artigen.ts index 5dc2c1c..7883b19 100644 --- a/src/artigen/artigen.ts +++ b/src/artigen/artigen.ts @@ -106,7 +106,7 @@ export const runCmd = (rollRequest: QueuedRoll): SolvedRoll => { } // List number of iterations on simulated nominals - if (rollRequest.modifiers.simulatedNominal) line2 += `Iterations performed per roll: \`${rollRequest.modifiers.simulatedNominal}\`\n`; + if (rollRequest.modifiers.simulatedNominal) line2 += `Iterations performed per roll: \`${rollRequest.modifiers.simulatedNominal.toLocaleString()}\`\n`; // Reduce counts to a single object returnMsg.counts = reduceCountDetails(tempCountDetails);