chore: Made dice summary join with comma instead of only space

This commit is contained in:
2025-04-24 02:04:59 -04:00
parent dc3a6e5793
commit 4cefb896f3

View File

@ -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[] {