From d563303f9050506102b29126b0297f4683bd065d Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Fri, 11 Feb 2022 20:23:04 +0700 Subject: [PATCH] Change to formatting --- Bot/Embeds.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bot/Embeds.fs b/Bot/Embeds.fs index 62e7540..9859f02 100644 --- a/Bot/Embeds.fs +++ b/Bot/Embeds.fs @@ -81,7 +81,7 @@ let responseSuccessfulHack earnedMoney (targetId : uint64) (hack : BattleItem) = embed.ImageUrl <- getHackGif (enum(hack.Id)) embed.Title <- "Hack Attack" embed.Description <- $"You successfully hacked <@{targetId}> using {hack.Name}" - + (if earnedMoney then ", and stole 💰$GBT {Game.HackPrize} from them!" else "!") + + (if earnedMoney then $", and stole {Game.HackPrize} 💰$GBT from them!" else "!") DiscordFollowupMessageBuilder() .AddEmbed(embed.Build())