From a4ad3f4b45e32019124c8c7fb9c3aba2544c6650 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Wed, 28 Jan 2026 00:41:48 -0600 Subject: [PATCH] Forgot to add a delay for the rain timer --- KfChatDotNetBot/Commands/Kasino/RainCommand.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/KfChatDotNetBot/Commands/Kasino/RainCommand.cs b/KfChatDotNetBot/Commands/Kasino/RainCommand.cs index e9b885d..4915a27 100644 --- a/KfChatDotNetBot/Commands/Kasino/RainCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/RainCommand.cs @@ -105,6 +105,7 @@ public class RainCommand : ICommand while (timer > 0) { timer--; + await Task.Delay(1000, ctx); await botInstance.KfClient.EditMessageAsync(msg.ChatMessageId!.Value, $"{user.FormatUsername()} is making it rain with {await decAmount.FormatKasinoCurrencyAsync()}! Type !rain in the next {timer} seconds to join."); }