Remove old console.logs, add TODOs

This commit is contained in:
Patrick Müller 2022-09-14 22:36:58 +02:00
parent 753e490c29
commit 7f436ae0b8
Signed by: Paddy
GPG Key ID: 37ABC11275CAABCE

View File

@ -383,8 +383,6 @@ export class AddGameComponent implements OnInit {
let gameScore: number = 0;
let winningTeamScore = this.getWinningTeamAndScore().score;
let winningTeam = this.getWinningTeamAndScore().team;
console.log(winningTeamScore);
console.log(winningTeam);
// We are going to calculate the points for the winning team and then set all players points accordingly
@ -431,6 +429,8 @@ export class AddGameComponent implements OnInit {
gameScore *= 2;
}
// TODO: Bonus points
// TODO: Check for announcements that have not been fulfilled!
this.setGameScores(gameScore, winningTeam);