i put a whole SIX minutes of effort into this commit!

This commit is contained in:
Sylvia 2026-09-07 14:54:30 -07:00
parent 9304861963
commit 813a8c2a5c
5 changed files with 24 additions and 8 deletions

View file

@ -40,6 +40,11 @@ public class MarisaPotionMaker : MicroGameHandler
public int currentPotionIndex;
[SerializeField] private TextMeshProUGUI potionRecipeTitle;
[SerializeField] private TextMeshProUGUI potionRecipeText;
public override void StartGame()
{
base.StartGame();
StartPotion(allPotions[Random.Range(0, allPotions.Length)]);
}
public void StartPotion(MicrogamePotion potionRequested)
{