only permit 3-digit modifiers
This commit is contained in:
parent
0c211528ef
commit
ab51bbaefa
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ import random, re
|
|||
from src import ModuleManager, utils
|
||||
|
||||
ERROR_FORMAT = "Incorrect format! Format must be [number]d[number], e.g. 1d20"
|
||||
RE_DICE = re.compile("([1-9]\d*)d([1-9]\d*)((?:[-+][1-9]\d*)*)", re.I)
|
||||
RE_DICE = re.compile("^([1-9]\d*)d([1-9]\d*)((?:[-+][1-9]\d{,2})*)$", re.I)
|
||||
RE_MODIFIERS = re.compile("([-+]\d+)")
|
||||
|
||||
MAX_DICE = 6
|
||||
|
|
Loading…
Reference in a new issue