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;