return invitedHomes;
}
public void getVisitableHomes(String playerName, List<String> invitedHomes, List<String> publicHomes) {
for (String name : playerData.names()) {
NBTCompound player = playerData.get(name);
if (player.containsKey(HOME)) {
HomePoint home = new HomePoint(player.getCompound(HOME));
if (home.isPublic) {
publicHomes.add(name);
} else if (home.invites.contains(new NBTString(playerName)) || name.equals(playerName.toLowerCase())) {
invitedHomes.add(name);
}