Better formatting of re-rolled dice #4
Labels
No Label
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: projectmoon/tenebrous-dicebot#4
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
It can sometimes be be difficult to tell how the dicebot is re-rolling dice in the Chronicles of Darkness dicepool system. It would be useful to see something like
2 => 10 => 10, 8, 4
to indicate a reroll. There are two parts to this: changing code to support the possibility, and then making the formatting nice.Vec<u32>
and tacking that on to a full set of rolls, a dice pool roll should be represented by aVec<SingleRoll>
, whereSingleRoll
has one or more actual rolls in it.SingleRoll
trait can implementDisplay
to provide the better formatting.