public void discardSponsor() { if (sponsorship != null) { sponsorship.discardAll(); } }
public void CreateQuest(List <int> players) { if (players.Count == 0) { int stages = GameObject.FindGameObjectWithTag("CurrStory").GetComponent <QuestCard>().stages; EndQuest(stages, stageModels.totalNumCards()); view.removeSponsor(); stageModels.discardAll(); StoryDeck.discard(); } else { view.LoadQuest(); quest.startQuest(players, stageModels); } }