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