From bca4cf4f3d0e81b5d9b4a72647c598fda3a866fb Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 5 Oct 2025 00:31:20 -0500 Subject: [PATCH] Added $ to the regex for showing exclude usage information --- KfChatDotNetBot/Commands/KasinoAdminCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/KasinoAdminCommands.cs b/KfChatDotNetBot/Commands/KasinoAdminCommands.cs index a09e634..d8f99b8 100644 --- a/KfChatDotNetBot/Commands/KasinoAdminCommands.cs +++ b/KfChatDotNetBot/Commands/KasinoAdminCommands.cs @@ -12,7 +12,7 @@ namespace KfChatDotNetBot.Commands; public class TempExcludeCommand : ICommand { public List Patterns => [ - new Regex("^admin kasino exclude", RegexOptions.IgnoreCase), + new Regex("^admin kasino exclude$", RegexOptions.IgnoreCase), new Regex(@"^admin kasino exclude (?\d+)$", RegexOptions.IgnoreCase), new Regex(@"^admin kasino exclude (?\d+) (?\d+)$", RegexOptions.IgnoreCase), ];