aliasPlayerMap.remove(name);
// remove his other aliases from the map
Element alias = aliasDocument.getElementsMatchingOwnText(name).first();
if (alias != null) {
for (Element key : alias.siblingElements()) {
aliasPlayerMap.remove(key.text());
}
}
System.out.println(p.getName() + " was removed from the game.");
}