Forgot to add a delay for the rain timer

This commit is contained in:
barelyprofessional
2026-01-28 00:41:48 -06:00
parent 65b7b19b8a
commit a4ad3f4b45

View File

@@ -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.");
}