override getAiSign()

in src/app/pages/game/services/ai-strategies/anticipate-strategy.service.ts [31:37]


  override getAiSign(): Promise<Signs> {
    const mostAnticipated = this.getMostAnticipatedSign();

    const anticipationData = `Player during countdown showed mostly ${mostAnticipated}. Please respond with sign which will beat ${mostAnticipated}`;

    return this.getSign(anticipationData);
  }