diff --git a/KfChatDotNetBot/Services/BotCommands.cs b/KfChatDotNetBot/Services/BotCommands.cs index 23ffc52..86a253c 100644 --- a/KfChatDotNetBot/Services/BotCommands.cs +++ b/KfChatDotNetBot/Services/BotCommands.cs @@ -107,7 +107,7 @@ internal class BotCommands if (isRateLimited.IsRateLimited) { _ = SendCooldownResponse(user, command.RateLimitOptions, isRateLimited.OldestEntryExpires!.Value, command.GetType().Name); - continue; + break; } RateLimitService.AddEntry(user, command, message.MessageRawHtmlDecoded); }