Fix: player entercode 2~8 digits

This commit is contained in:
2018-10-18 17:26:36 +09:00
parent ede509e250
commit d2c8ceeb4e
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ function AccountValidator() {
this.patternMaestroPW = /^[A-Za-z0-9]{4,16}$/;
this.patternPlayerID = /^[A-Za-z0-9가-힣-_]{1,8}$/;
this.patternPlayerPW = /^[0-9]{2,6}$/;
this.patternPlayerPW = /^[0-9]{2,8}$/;
}
// maestro
@@ -92,4 +92,4 @@ AccountValidator.PLAYER_ID_LENGTH_MINIMUM = 1;
AccountValidator.PLAYER_ID_LENGTH_MAXIMUM = 8;
AccountValidator.PLAYER_PW_LENGTH_MINIMUM = 2;
AccountValidator.PLAYER_PW_LENGTH_MAXIMUM = 6;
AccountValidator.PLAYER_PW_LENGTH_MAXIMUM = 8;