From c9f20f3c47e99176b0ac6ece97317d4d994d3ca5 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Wed, 10 Sep 2025 09:59:23 -0700 Subject: [PATCH] Fix a typo from `coin` to `coins` in marketplace --- Assets/Scripts/IconMarketplace/IconMarketplaceDownloadIcon.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/IconMarketplace/IconMarketplaceDownloadIcon.cs b/Assets/Scripts/IconMarketplace/IconMarketplaceDownloadIcon.cs index 0abb6d6..0fb5a0d 100644 --- a/Assets/Scripts/IconMarketplace/IconMarketplaceDownloadIcon.cs +++ b/Assets/Scripts/IconMarketplace/IconMarketplaceDownloadIcon.cs @@ -187,7 +187,7 @@ public class IconMarketplaceDownloadIcon : MonoBehaviour Tools.RenderFromBase64(entry.Data, newIcon.transform.GetChild(0).GetChild(0).GetComponent()); newIcon.transform.GetChild(1).GetComponent().text = "Bird Name: " + entry.Name; - newIcon.transform.GetChild(2).GetComponent().text = "Price " + Tools.FormatWithCommas(entry.Price) + " coin"; + newIcon.transform.GetChild(2).GetComponent().text = "Price " + Tools.FormatWithCommas(entry.Price) + " coins"; newIcon.transform.GetChild(3).GetComponent().text = "Designer Name: " + entry.CreatorUsername; var btn = newIcon.transform.GetChild(4).GetComponent