From 0f82354f8e38055cfa3596ac6e2520df712843f0 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Thu, 2 Jun 2022 23:08:14 +0700 Subject: [PATCH] Copy changes --- Bot/Embeds.fs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Bot/Embeds.fs b/Bot/Embeds.fs index 7e8011b..9af533f 100644 --- a/Bot/Embeds.fs +++ b/Bot/Embeds.fs @@ -67,10 +67,10 @@ let pickHack actionId attacker defender bonus isTrainer = {defender.Name} has **{defender.Bank} $GBT** we can take from them. **__Your Strength:__** - 💪 {attacker.Stats.Strength.Amount} + `💪 {attacker.Stats.Strength.Amount}` **__Their Strength:__** - 💪 {defender.Stats.Strength.Amount} + `💪 {defender.Stats.Strength.Amount}` {outcomeMsg}{bonusMsg}""" else "" let embed = @@ -81,7 +81,7 @@ let pickHack actionId attacker defender bonus isTrainer = if not isTrainer then for hack in Inventory.getHacks attacker.Inventory do let amount = if hack.Power > int defender.Bank then int defender.Bank else hack.Power - embed.AddField(hack.Name, $"Cooldown {hack.Cooldown} mins\nExtract {amount} $GBT", true) |> ignore + embed.AddField(hack.Name, $"Cooldown: {hack.Cooldown} mins\nSteal Total: `{amount + bonus} $GBT`", true) |> ignore DiscordFollowupMessageBuilder() .AddComponents(buttons)