From 312f93494d36c97565e99ad8a61ab91bac567225 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 7 Dec 2025 13:50:32 -0600 Subject: [PATCH] Reduce rate limit window for dice --- KfChatDotNetBot/Commands/Kasino/DiceCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/Kasino/DiceCommand.cs b/KfChatDotNetBot/Commands/Kasino/DiceCommand.cs index 4e2007e..594c949 100644 --- a/KfChatDotNetBot/Commands/Kasino/DiceCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/DiceCommand.cs @@ -23,7 +23,7 @@ public class DiceCommand : ICommand public RateLimitOptionsModel? RateLimitOptions => new() { MaxInvocations = 3, - Window = TimeSpan.FromSeconds(30) + Window = TimeSpan.FromSeconds(15) }; private static double _houseEdge = 0.05; // house edge hack? are we doing perfect 50/50 games?