More fixes and improvements

This commit is contained in:
ShadowRanger
2015-06-23 19:05:26 +10:00
parent f7029e5ee2
commit a03c73f8d6
4 changed files with 41 additions and 7 deletions

View File

@@ -44,7 +44,7 @@ public class UUIDFetcher implements Callable<Map<String, UUID>> {
String id = (String) jsonProfile.get("id");
String name = (String) jsonProfile.get("name");
UUID uuid = UUIDFetcher.getUUID(id);
uuidMap.put(name, uuid);
uuidMap.put(name.toLowerCase(), uuid);
}
if (rateLimiting && i != requests - 1) {
Thread.sleep(100L);