PlayScoreKeeper.prototype.pointForGo = function(player){
    this.mediator.publish('messages-add', player.name + ' scored 1 point.');
    player.currentPoints = player.points;
    player.points += 1;
  };