allow more rolls at once, 30 seems ok

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
Brian S. Stephan 2026-02-11 09:29:30 -06:00
parent 56b325ca10
commit 0bd118f930
Signed by: bss
GPG Key ID: 3DE06D3180895FCB

View File

@ -65,7 +65,7 @@ class DiceRoller(object):
"""
rolls = mods[0][0][1] if mods[0][0][1] else 1
if trials:
assert trials <= 10, "Too many rolls (max: 10)."
assert trials <= 30, "Too many rolls (max: 30)."
assert rolls <= 50, "Too many dice (max: 50) in roll."
output = ""