Updated to use CurrencyAmmount

This commit is contained in:
Pasha Bibko
2026-04-28 11:16:38 +01:00
parent 5e7507058b
commit 3f12e49b0f
5 changed files with 12 additions and 12 deletions

View File

@@ -46,7 +46,7 @@ namespace Fruitomation.UI
private void Update()
{
MoneyText.text = $"Current Money: ${MoneyController.Current:F1}";
MoneyText.text = $"Current Money: {MoneyController.Current.AsString()}";
}
}
}