Removed end of line token for juiceme

This commit is contained in:
barelyprofessional
2024-07-18 18:03:07 +10:00
parent 272317f828
commit 0d8116bf24

View File

@@ -9,7 +9,7 @@ namespace KfChatDotNetKickBot.Commands;
public class JuiceCommand : ICommand
{
public List<Regex> Patterns { get; } = [new Regex("^juiceme$")];
public List<Regex> Patterns => [new Regex("^juiceme")];
public string HelpText => "Get juice!";
public bool HideFromHelp => false;
public UserRight RequiredRight => UserRight.Guest;