public void EnterTavinsFlagon() { ThelmoreMusic.Stop(); ThelmoreAmbience.Stop(); TavernMusic.Play(); TavernAmbience.Play(); TavernPanel.SetActive(true); drinkbuttonClicked = false; TavinsgreetingText.text = "Tavin offers you a drink, it costs " + priceOfAle + " gp. You currently have " + SaveGame.current.GROUP[0].gold + " gp."; }
public void ExitTavinsFlagon() { ThelmoreMusic.Play(); ThelmoreAmbience.Play(); TavernMusic.Stop(); TavernAmbience.Stop(); TavernPanel.SetActive(false); TavernButton.GetComponent <Image>().sprite = Tavern_Dark; InfoText.text = ""; storeSelected = 0; }