@Override
  public void chatMessage(String who, String where, String what) {
    if (convoList.containsEntry(where) == false) conversationStartedNotice(where);

    if (who.toUpperCase().equals(USERNAME.toUpperCase())) chatArea.clientPrint(what, who, where);
    else chatArea.serverPrint(what, who, where);
  }