/* public int generateRandom(List<int> range)
     * {
     *  Debug.Log("Scrolls in deck:" + scrollsInDeck);
     *  int tryNum = -1;
     *  if(TurnManagerSingle.singleDeck.Count > 0)
     *  {
     *      tryNum = (int)Random.Range(0, scrollsInDeck);
     *      if (!TurnManagerSingle.singleDeck.ContainsKey("scroll" + tryNum))
     *      {
     *          tryNum = generateRandom(range);
     *      }
     *      if (range.Contains(tryNum))
     *      {
     *          tryNum = generateRandom(range);
     *      }
     *  }
     *  return tryNum;
     * } */

    public void assignScroll(Scroll deckScroll1, Scroll deckScroll2, Scroll deckScroll3)
    {
        if (deckScroll1)
        {
            scrollDisplay1.scroll = deckScroll1;
            scrollDisplay1.setInfo();
        }
        if (deckScroll2)
        {
            scrollDisplay2.scroll = deckScroll2;
            scrollDisplay2.setInfo();
        }
        if (deckScroll3)
        {
            scrollDisplay3.scroll = deckScroll3;
            scrollDisplay3.setInfo();
        }
    }