fix hat name regex

remotes/1693045480750635534/spooky-22
Aevann1 2022-09-03 03:57:03 +02:00
parent 8f5e4c3ec6
commit 515526f9cb
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ marseyaward_title_regex = re.compile("( *<img[^>]+>)+", flags=re.A)
marsey_regex = re.compile("[a-z0-9]{1,30}", flags=re.A)
hat_regex = re.compile("[a-zA-Z0-9]{1,50}", flags=re.A)
hat_regex = re.compile("[a-zA-Z0-9\-() ,_]{1,50}", flags=re.A)
tags_regex = re.compile("[a-z0-9: ]{1,200}", flags=re.A)