From 9d42213ec6dc4a9df4ae68beec119fec83e06f54 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Fri, 6 May 2022 15:55:17 +0700 Subject: [PATCH] Bump the loop --- 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 ff2f50a..aaafee5 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 5000 + do! Async.Sleep 30000 do! sendEmbed jackpotNumChannel slotsChannel message |> Async.Ignore } |> Async.Start