diff --git a/qtc-net-client-2/Forms/StoreItemDisplay.cs b/qtc-net-client-2/Forms/StoreItemDisplay.cs index b68a6e1..02fc414 100644 --- a/qtc-net-client-2/Forms/StoreItemDisplay.cs +++ b/qtc-net-client-2/Forms/StoreItemDisplay.cs @@ -63,7 +63,12 @@ namespace qtc_net_client_2.Forms var ownedStoreItem = await _apiService.BuyStoreItem(StoreItem.Id); if (ownedStoreItem != null && ownedStoreItem.Success && ownedStoreItem.Data != null) { + Main? mainForm = (Main?)Application.OpenForms[0]; + if (mainForm != null) + mainForm.RefreshCurrencyCounter(); + Enabled = true; + var result = MessageBox.Show($"Successfully Bought '{StoreItem.Name}'! Would You Like To Wear It Now?", "Success!", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) {