From 7dda9c1069a89247e506d6a20dcc0a41fe4049db Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Thu, 21 Apr 2022 15:03:25 +0700 Subject: [PATCH] More copy --- Bot/Games/SlotMachine.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bot/Games/SlotMachine.fs b/Bot/Games/SlotMachine.fs index 96eef8a..f14428f 100644 --- a/Bot/Games/SlotMachine.fs +++ b/Bot/Games/SlotMachine.fs @@ -267,8 +267,8 @@ let spin multiplier (ctx : IDiscordContext) = embed.Title <- "Slots Results" let addGBTField (embed : DiscordEmbedBuilder) prize = if prize > 0 - then embed.AddField("New 💰$GBT Balance", $"`💰` {player.Bank} ⋙ `💰` {player.Bank - playAmount + prize} `(+{prize - playAmount} $GBT)`") |> ignore - else embed.AddField("New 💰$GBT Balance", $"`💰` {player.Bank} ⋙ `💰` {player.Bank + prize} `({prize} $GBT)`") |> ignore + then embed.AddField("New $GBT Balance", $"`💰` {player.Bank} ⋙ `💰` {player.Bank - playAmount + prize} `(+{prize - playAmount} $GBT)`") |> ignore + else embed.AddField("New $GBT Balance", $"`💰` {player.Bank} ⋙ `💰` {player.Bank + prize} `({prize} $GBT)`") |> ignore let! result , prizeAmount = async { match prize with | Some (Money amount) ->