*/
public void displayChoices() {
renderer.addTextToScreen("Making the shit!");
LinkedList contact = ((Creature)map.getPlayer()).getConnectionList();
DisplayContacts contacts = new DisplayContacts(inputManager, contact);
contacts.show(screen);
int contactMenuChoice = contacts.getMenuOption();
if(contactMenuChoice < contact.size()){
runGame(((Creature)contact.get(contactMenuChoice)).getGame());
}
}