From 0d8116bf24ab62fe46cff55ab6781af6b7a161e9 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 18 Jul 2024 18:03:07 +1000 Subject: [PATCH] Removed end of line token for juiceme --- KfChatDotNetKickBot/Commands/JuiceCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetKickBot/Commands/JuiceCommand.cs b/KfChatDotNetKickBot/Commands/JuiceCommand.cs index 10640eb..c2f8f1f 100644 --- a/KfChatDotNetKickBot/Commands/JuiceCommand.cs +++ b/KfChatDotNetKickBot/Commands/JuiceCommand.cs @@ -9,7 +9,7 @@ namespace KfChatDotNetKickBot.Commands; public class JuiceCommand : ICommand { - public List Patterns { get; } = [new Regex("^juiceme$")]; + public List Patterns => [new Regex("^juiceme")]; public string HelpText => "Get juice!"; public bool HideFromHelp => false; public UserRight RequiredRight => UserRight.Guest;