We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我在 client/MapleCharacter.java 中做了如下修改:
public static boolean canCreateChar(String name) { String lname = name.toLowerCase(); for (String nameTest : BLOCKED_NAMES) { if (lname.contains(nameTest)) { return false; } } return getIdByName(name) < 0 && Pattern.compile("[a-zA-Z0-9\u4E00-\u9FA5]{2,12}").matcher(name).matches(); }
现在可以建立中文名字角色,characters表中正常出现相应记录,但是客户端紧接着崩溃,无法进入游戏,服务端窗口没有错误提示信息。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
我在 client/MapleCharacter.java 中做了如下修改:
现在可以建立中文名字角色,characters表中正常出现相应记录,但是客户端紧接着崩溃,无法进入游戏,服务端窗口没有错误提示信息。
The text was updated successfully, but these errors were encountered: