destroy()

in src/app/pages/game/services/game-handler.service.ts [73:80]


  destroy() {
    this.gameStatus.set(GameStatuses.LetsPlay);
    this.latestPosition.set(null);
    this.pastPlayerMoves.set([]);
    this.playerLosingStreak.set(0);
    this.computerScore.set(0);
    this.playerScore.set(0);
  }