chore: Made dice summary join with comma instead of only space
This commit is contained in:
@ -45,7 +45,7 @@ export function formatSummary(rolls: number[], discarded: number[], diceType: Di
|
|||||||
if (!kept) formatted = `~~${formatted}~~`;
|
if (!kept) formatted = `~~${formatted}~~`;
|
||||||
return formatted;
|
return formatted;
|
||||||
})
|
})
|
||||||
.join(' ');
|
.join(', ');
|
||||||
}
|
}
|
||||||
|
|
||||||
export function parseExpression(input: string): RollResult | RollResult[] {
|
export function parseExpression(input: string): RollResult | RollResult[] {
|
||||||
|
|||||||
Reference in New Issue
Block a user