score = -1 * Math.abs((bidInt - tricksWon) * 10);
}
gameEventNotifier.notify(new ScoreEvent(player.getId(), score));
game.addScore(player.getId(), score);
IndividualScore individualScore = new IndividualScore(player, score);
this.overallScores.addIndividualScore(individualScore);
i++;
}
}