From ff9854b88dd5acd0498069d95e4423ac82debc7c Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Fri, 6 May 2022 15:46:13 +0700 Subject: [PATCH] Speed up jackpot for embed --- 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 c3d1926..ff2f50a 100644 --- a/Bot/Games/SlotMachine.fs +++ b/Bot/Games/SlotMachine.fs @@ -395,7 +395,7 @@ let sendEmbedWithLoop (jackpotNumChannel : DiscordChannel) (slotsChannel : Disco | [] -> sendEmbed jackpotNumChannel slotsChannel None | msg::_ -> async.Return (Some msg) while true do - do! Async.Sleep 305000 + do! Async.Sleep 5000 do! sendEmbed jackpotNumChannel slotsChannel message |> Async.Ignore } |> Async.Start