From 7f436ae0b897e02797e207c9063a4fcb545d1d17 Mon Sep 17 00:00:00 2001 From: Patrick Mueller Date: Wed, 14 Sep 2022 22:36:58 +0200 Subject: [PATCH] Remove old console.logs, add TODOs --- src/app/components/add-game/add-game.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/add-game/add-game.component.ts b/src/app/components/add-game/add-game.component.ts index 1f52fc0..a7a7e17 100644 --- a/src/app/components/add-game/add-game.component.ts +++ b/src/app/components/add-game/add-game.component.ts @@ -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);