mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-24 03:05:17 +01:00
Enhanced Password Regex
We are now allowing every ASCII character except for space (0x20 - 32). Those are the characters allowed in passwords.
This commit is contained in:
parent
e36337c066
commit
a5952de237
@ -165,7 +165,7 @@ settings:
|
||||
# AuthMe will NEVER teleport players !
|
||||
noTeleport: false
|
||||
# Regex sintax for allowed Chars in passwords.
|
||||
allowedPasswordCharacters: '[a-zA-Z0-9_?!@+&-]*'
|
||||
allowedPasswordCharacters: '[\x21-\x7E]*'
|
||||
GameMode:
|
||||
# ForceSurvivalMode to player when join ?
|
||||
ForceSurvivalMode: false
|
||||
@ -422,4 +422,4 @@ Protection:
|
||||
antiBotDuration: 10
|
||||
VeryGames:
|
||||
# These features are only available on VeryGames Server Provider
|
||||
enableIpCheck: false
|
||||
enableIpCheck: false
|
||||
|
Loading…
Reference in New Issue
Block a user