From 5c186f13b1ee36270342fa1bdd93764c6d766130 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Wed, 31 Dec 2025 20:37:46 -0600 Subject: [PATCH] Reducing rate limits for slots --- KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs b/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs index 6b57afc..ff05751 100644 --- a/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/SlotsCommand.cs @@ -36,8 +36,8 @@ public class SlotsCommand : ICommand public TimeSpan Timeout => TimeSpan.FromSeconds(30); public RateLimitOptionsModel? RateLimitOptions => new() { - MaxInvocations = 1, - Window = TimeSpan.FromSeconds(30) + MaxInvocations = 2, + Window = TimeSpan.FromSeconds(15) }; public async Task RunCommand(ChatBot botInstance, MessageModel messagen, UserDbModel user,