From 0d7efe277d16b439824edf6c6aec8a178279428e Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Sat, 23 Apr 2022 10:15:07 +0700 Subject: [PATCH] Increment the jackpot more slowly --- Bot/Games/SlotMachine.fs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Bot/Games/SlotMachine.fs b/Bot/Games/SlotMachine.fs index f14428f..985f560 100644 --- a/Bot/Games/SlotMachine.fs +++ b/Bot/Games/SlotMachine.fs @@ -277,10 +277,10 @@ let spin multiplier (ctx : IDiscordContext) = embed.Color <- DiscordColor.Green embed.Description <- $"You WIN `💰` **{prizeWithMultiplier}** GBT 🎉" embed.AddField("Bet", $"{playAmount}", true) |> ignore - embed.AddField("Jackpot Rake", $"{multiplier}", true) |> ignore +// embed.AddField("Jackpot Rake", $"{multiplier}", true) |> ignore embed.AddField("Prize", $"{prizeWithMultiplier}", true) |> ignore addGBTField embed prizeWithMultiplier - do! incrementJackpot multiplier |> Async.Ignore +// do! incrementJackpot multiplier |> Async.Ignore return "WON" , prizeWithMultiplier | Some (Jackpot) -> let! jackpot = getJackpotAmount () @@ -293,7 +293,7 @@ let spin multiplier (ctx : IDiscordContext) = do! resetJackpot BaseJackpotAmount |> Async.Ignore return "JACKPOT" , jackpot | None -> - do! incrementJackpot multiplier |> Async.Ignore + do! incrementJackpot 1 |> Async.Ignore embed.Description <- $"You LOST `💰` **{playAmount}** $GBT 😭" embed.Color <- DiscordColor.Red embed.AddField("Bet", $"{playAmount}", true) |> ignore