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