sharedUsers.clear();
NBTTagList sharedList = tag.getTagList("SharedUsers", 10);
for(int i = 0; i < sharedList.tagCount(); ++i) {
NBTTagCompound tagCompound = sharedList.getCompoundTagAt(i);
sharedUsers.add(new GameProfile(tagCompound.hasKey("uuid") ? UUID.fromString(tagCompound.getString("uuid")) : null, tagCompound.getString("name")));
}
hackedUsers.clear();
NBTTagList hackedList = tag.getTagList("HackedUsers", 10);
for(int i = 0; i < hackedList.tagCount(); ++i) {
NBTTagCompound tagCompound = hackedList.getCompoundTagAt(i);
hackedUsers.add(new GameProfile(tagCompound.hasKey("uuid") ? UUID.fromString(tagCompound.getString("uuid")) : null, tagCompound.getString("name")));
}
checkForNetworkValidity();
}