From 0bd118f930832a7d31480550a697f25cdf78a65f Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 11 Feb 2026 09:29:30 -0600 Subject: [PATCH] allow more rolls at once, 30 seems ok Signed-off-by: Brian S. Stephan --- dice/roller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dice/roller.py b/dice/roller.py index a03c722..5a9f852 100644 --- a/dice/roller.py +++ b/dice/roller.py @@ -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 = ""