public void SetResults()
 {
     if (success)
     {
         HagglingController hagglingController = FindObjectOfType <HagglingController>();
         hagglingController.AddItemToTransaction(selectedItem);
         Debug.Log("Success");
     }
     else
     {
         inventoryHandler.ReturnItem();
     }
     Invoke("ExitMiniGame", 3.0f);
 }