From 2ad5c46835d07c98ff0a76f38fc5555bae3a8de9 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Mon, 11 May 2026 21:43:40 -0500 Subject: [PATCH] Vastly increase the roulette timeout so that the round doesn't prematurely end due to the cancellation token expiring --- KfChatDotNetBot/Commands/Kasino/RouletteCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/Kasino/RouletteCommand.cs b/KfChatDotNetBot/Commands/Kasino/RouletteCommand.cs index a6b7282..4c62dbe 100644 --- a/KfChatDotNetBot/Commands/Kasino/RouletteCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/RouletteCommand.cs @@ -34,7 +34,7 @@ public class RouletteCommand : ICommand public string? HelpText => "!roulette - Bet types: number (0-36), red/black, odd/even, low/high, 1st12/2nd12/3rd12, col1/col2/col3"; public UserRight RequiredRight => UserRight.Loser; - public TimeSpan Timeout => TimeSpan.FromSeconds(5); + public TimeSpan Timeout => TimeSpan.FromSeconds(300); public RateLimitOptionsModel? RateLimitOptions => new() { MaxInvocations = 10,