forked from rDrama/rDrama
1
0
Fork 0

lock short usernames to $20 or higher

master
Aevann 2024-02-24 20:31:32 +02:00
parent 4e0304b4d2
commit cad656345b
1 changed files with 1 additions and 1 deletions

View File

@ -787,7 +787,7 @@ def settings_name_change(v):
if new_name == v.username:
abort(400, "You didn't change anything")
if v.patron:
if v.patron >= 4:
used_regex = valid_username_patron_regex
else:
used_regex = valid_username_regex