Reduce required length of player names GH-226

This commit is contained in:
chickeneer
2019-07-22 17:59:26 -05:00
parent d17055eb99
commit 4b9bab652e
3 changed files with 5 additions and 3 deletions
@@ -17,7 +17,7 @@ public class ACFSpongeUtil {
return null;
}
String name = ACFUtil.replace(search, ":confirm", "");
if (name.length() < 3) {
if (name.length() < 2) {
issuer.sendError(MinecraftMessageKeys.USERNAME_TOO_SHORT);
return null;
}