From 746a33120dea0d8186b6e1e6f590e0101e2b53d9 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sat, 4 Oct 2025 14:14:14 -0500 Subject: [PATCH] Added !lastactive as a pattern --- KfChatDotNetBot/Commands/UtilityCommands.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/UtilityCommands.cs b/KfChatDotNetBot/Commands/UtilityCommands.cs index 2da8093..fe67968 100644 --- a/KfChatDotNetBot/Commands/UtilityCommands.cs +++ b/KfChatDotNetBot/Commands/UtilityCommands.cs @@ -71,7 +71,8 @@ public class GetVersionCommand : ICommand public class GetLastActivity : ICommand { public List Patterns => [ - new Regex("^lastactivity", RegexOptions.IgnoreCase) + new Regex("^lastactivity", RegexOptions.IgnoreCase), + new Regex("^lastactive", RegexOptions.IgnoreCase) ]; public string? HelpText => "When was Bossman last active?";