From 03ffe4d4a40e502a990feaed5f7c0684231ab769 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Wed, 11 May 2022 13:59:28 +0700 Subject: [PATCH] Small copy fix --- Bot/Games/Store.fs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bot/Games/Store.fs b/Bot/Games/Store.fs index b19dc06..23a11b7 100644 --- a/Bot/Games/Store.fs +++ b/Bot/Games/Store.fs @@ -161,7 +161,8 @@ let purchaseItemEmbed quantity (item : Item) = embed.Title <- $"Purchased {quantity}x {item.Name}" match item.Type with | ItemType.Jpeg -> - embed.Description <- $"Congratulations! You are in the draw for the {item.Name}.\n\nThe winner will be announced soon in the <#{GuildEnvironment.channelGiveaway}>" + let itemName = item.Name.Replace("🎟️", "") + embed.Description <- $"Congratulations! You are in the draw for the {itemName}.\n\nThe winner will be announced soon in <#{GuildEnvironment.channelGiveaway}>" embed.ImageUrl <- item.ImageUrl embed.Thumbnail <- DiscordEmbedBuilder.EmbedThumbnail() embed.Thumbnail.Url <- item.IconUrl