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())