We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b9c7dc commit 40d27d7Copy full SHA for 40d27d7
ClientCore/CnCNet5/NameValidator.cs
@@ -25,7 +25,7 @@ public static string IsNameValid(string name)
25
return "The first character in the player name cannot be a number.".L10N("Client:ClientCore:NameFirstIsNumber");
26
27
if (name[0] == '-')
28
- return "The first character in the player name cannot be a dash ( - ).".L10N("Client:ClientCore:NameFirstIsDash");
+ return "The first character in the player name cannot be a hyphen ( - ).".L10N("Client:ClientCore:NameFirstIsHyphen");
29
30
// Check that there are no invalid chars
31
char[] allowedCharacters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_[]|\\{}^`".ToCharArray();
0 commit comments