From d9d9f993fa34045ab2b3c05e90ae9efa4b9aae40 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Thu, 21 Apr 2022 13:17:46 +0700 Subject: [PATCH] No more jackpot --- Bot/Games/SlotMachine.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bot/Games/SlotMachine.fs b/Bot/Games/SlotMachine.fs index f81b47c..5fd2272 100644 --- a/Bot/Games/SlotMachine.fs +++ b/Bot/Games/SlotMachine.fs @@ -237,7 +237,7 @@ let spin multiplier (ctx : IDiscordContext) = let random = System.Random(System.Guid.NewGuid().GetHashCode()) let results = [| reel1.[random.Next(0, reel1.Length)] ; reel2.[random.Next(0, reel2.Length)] ; reel3.[random.Next(0, reel3.Length)] |] - let results = [| BigBrother ; BigBrother ; BigBrother |] +// let results = [| BigBrother ; BigBrother ; BigBrother |] let getPrize (results : SlotSymbol array) = prizeTable |> Array.tryPick (fun (s1,s2,s3,prize) ->