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);