From 4103b48483ab65542853b68e0ce4241bf598bb47 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Thu, 21 Apr 2022 13:05:49 +0700 Subject: [PATCH] Increment jackpot more slowly, description --- 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 24b48d7..755aebe 100644 --- a/Bot/Games/SlotMachine.fs +++ b/Bot/Games/SlotMachine.fs @@ -291,7 +291,7 @@ let spin multiplier (ctx : IDiscordContext) = do! resetJackpot BaseJackpotAmount |> Async.Ignore return "JACKPOT" , jackpot | None -> - do! incrementJackpot playAmount |> Async.Ignore + do! incrementJackpot multiplier |> Async.Ignore embed.Description <- $"You LOST `💰` **{playAmount}** $GBT 😭" embed.Color <- DiscordColor.Red embed.AddField("Bet", $"{playAmount}", true) |> ignore @@ -374,7 +374,7 @@ let sendEmbed channel (message : DiscordMessage option) = async { let embed = DiscordEmbedBuilder() embed.Title <- "Degenz Slot Machine" embed.ImageUrl <- "https://s7.gifyu.com/images/ezgif.com-gif-maker-268ecb6e4d28bd55a0.gif" - embed.Description <- "Want to try your luck?" + embed.Description <- "Want to try your luck? When you lose the Jackpot goes up!" let! jackpot = getJackpotAmount () embed.Title <- $"CURRENT JACKPOT: `{jackpot} 💰 $GBT`"