1
1
mirror of https://github.com/Burn-E99/TheArtificer.git synced 2026-06-04 00:53:50 -04:00

Make simnom iterations performed per roll more readable

This commit is contained in:
Ean Milligan
2025-08-05 16:46:30 -04:00
parent 255955d854
commit f989be56db

View File

@@ -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);