forked from projectmoon/tenebrous-dicebot
Show all rolls if we are below the max amount shown (15 dice).
This commit is contained in:
parent
aa28d8bec7
commit
23cf9e6ba4
|
@ -167,7 +167,7 @@ fn fmt_rolls(pool: &DicePoolRoll) -> String {
|
|||
rolls.len() - max_displayed_rolls
|
||||
)
|
||||
} else {
|
||||
rolls.iter().take(10).join(", ")
|
||||
rolls.iter().join(", ")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue