From 2a72b0d37c0e57700346e264bea7f5ac2c141ca4 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Mon, 13 Jun 2022 22:17:57 +0700 Subject: [PATCH] Money bag --- Bot/Games/Store.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bot/Games/Store.fs b/Bot/Games/Store.fs index 0de2d83..f41544f 100644 --- a/Bot/Games/Store.fs +++ b/Bot/Games/Store.fs @@ -78,7 +78,7 @@ let getItemEmbeds owned (items : StoreItem list) = |> List.iter (function | Buyable price -> if not owned then - embed.AddField("Price", (if price = 0 then "Free" else $"{price} $GBT"), true) |> ignore + embed.AddField("Price", (if price = 0 then "Free" else $"{price} 💰 $GBT"), true) |> ignore | Attackable power -> let title = match item.Item.Type with ItemType.Hack -> "Reward" | _ -> "Power" embed.AddField($"{title}", string power, true) |> ignore