hexiaojie há 8 meses atrás
pai
commit
7902ba9520

+ 4 - 4
GameClient/Assets/Game/HotUpdate/Views/RoleInfoRegister/RoleInfoRegisterView.cs

@@ -93,9 +93,9 @@ namespace GFGGame
                 return;
             }
             
-            if (account.Length < 8) //最长输入在UI编辑器中做了限制
+            if (account.Length < 6) //最长输入在UI编辑器中做了限制
             {
-                PromptController.Instance.ShowFloatTextPrompt("账号长度最少需要8位");
+                PromptController.Instance.ShowFloatTextPrompt("账号长度最少需要6位");
                 return;
             }
             
@@ -105,9 +105,9 @@ namespace GFGGame
                 return;
             }
             
-            if (password.Length < 8) //最长输入在UI编辑器中做了限制
+            if (password.Length < 6) //最长输入在UI编辑器中做了限制
             {
-                PromptController.Instance.ShowFloatTextPrompt("密码长度最少需要8位");
+                PromptController.Instance.ShowFloatTextPrompt("密码长度最少需要5位");
                 return;
             }