From 4cefb896f3ff5a950064dc924fa85955db280dde Mon Sep 17 00:00:00 2001 From: Cyper Date: Thu, 24 Apr 2025 02:04:59 -0400 Subject: [PATCH] chore: Made dice summary join with comma instead of only space --- src/lib/dice.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/dice.ts b/src/lib/dice.ts index 26afc1c..3d629a9 100644 --- a/src/lib/dice.ts +++ b/src/lib/dice.ts @@ -45,7 +45,7 @@ export function formatSummary(rolls: number[], discarded: number[], diceType: Di if (!kept) formatted = `~~${formatted}~~`; return formatted; }) - .join(' '); + .join(', '); } export function parseExpression(input: string): RollResult | RollResult[] {