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