Fixed denying 16 length player names

This commit is contained in:
boy0001 2015-08-01 03:11:50 +10:00
parent f1d76beb3a
commit 248ffd9d6e

View File

@ -64,7 +64,7 @@ public abstract class Argument<T> {
public static Argument<String> PlayerName = new Argument<String>("PlayerName", "Dinnerbone") {
@Override
public String parse(String in) {
return in.length() < 16 ? in : null;
return in.length() <= 16 ? in : null;
}
};