Lowercase the name input.

This commit is contained in:
DNx5 2015-12-02 04:10:56 +07:00
parent ececba2858
commit e02af46d65

View File

@ -528,7 +528,7 @@ public class PlayerAuth {
}
public Builder name(String name) {
this.name = name;
this.name = name.toLowerCase();
return this;
}