Show all rolls if we are below the max amount shown (15 dice).
continuous-integration/drone/push Build is passing Details

This commit is contained in:
projectmoon 2020-12-17 20:54:01 +00:00
parent aa28d8bec7
commit 23cf9e6ba4
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ fn fmt_rolls(pool: &DicePoolRoll) -> String {
rolls.len() - max_displayed_rolls
)
} else {
rolls.iter().take(10).join(", ")
rolls.iter().join(", ")
}
}