need to convert name lowercase

This commit is contained in:
Xephi
2014-06-17 21:46:08 +02:00
parent 800ecb16a0
commit 964e66a370
2 changed files with 2 additions and 2 deletions
@@ -56,7 +56,7 @@ public class CrazyLoginConverter implements Converter {
continue;
if (args[0].equalsIgnoreCase("name"))
continue;
String player = args[0];
String player = args[0].toLowerCase();
String psw = args[1];
try {
if (player != null && psw != null) {