diff --git a/AuthentesApp/src/app/valuesAlign/valuesAlign.page.ts b/AuthentesApp/src/app/valuesAlign/valuesAlign.page.ts index 7e63b88..4ce946b 100644 --- a/AuthentesApp/src/app/valuesAlign/valuesAlign.page.ts +++ b/AuthentesApp/src/app/valuesAlign/valuesAlign.page.ts @@ -1,4 +1,4 @@ -import { Component, Renderer2 } from '@angular/core'; +import { Component } from '@angular/core'; import { Router } from '@angular/router'; import { AlertService } from '../services/alert.service'; import { GameService } from '../services/game.service'; @@ -12,7 +12,7 @@ export class ValuesAlignPage { mayContinue: boolean; - constructor(private router: Router, private game: GameService, private renderer: Renderer2, public alert: AlertService) {} + constructor(private router: Router, private game: GameService, public alert: AlertService) {} async checkValues(){ @@ -34,9 +34,9 @@ export class ValuesAlignPage { if(!(await this.checkValues())){ return; } - this.mayContinue = true; + // User may continue - console.log("hihi go go"); + this.mayContinue = true; }; async continueGame(){ @@ -50,7 +50,6 @@ export class ValuesAlignPage { // remove all the cards with value false from array for(var i = 0; i < this.game.cardset.length; i++){ const card = this.game.cardset[i]; - console.log(card.id); if(card.value == 2){ this.game.cardset.splice(i,1); i--;