Compare commits

..

1 Commits

Author SHA1 Message Date
0bd118f930 allow more rolls at once, 30 seems ok
Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2026-02-11 09:30:03 -06:00

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 = ""