From f588e79309d026c3ade65a1f0c2ba5654db41100 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sat, 14 Sep 2024 16:43:43 +0800 Subject: [PATCH] Added an alias for cracked command --- KfChatDotNetBot/Commands/MemeCommands.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/MemeCommands.cs b/KfChatDotNetBot/Commands/MemeCommands.cs index 2a8d45f..ca676dd 100644 --- a/KfChatDotNetBot/Commands/MemeCommands.cs +++ b/KfChatDotNetBot/Commands/MemeCommands.cs @@ -76,7 +76,10 @@ public class GmKasinoCommand : ICommand public class CrackedCommand : ICommand { - public List Patterns => [new Regex("^cracked (?.+)")]; + public List Patterns => [ + new Regex("^cracked (?.+)"), + new Regex("^crackhead (?.+)") + ]; public string? HelpText => "Crackhead Zalgo text"; public UserRight RequiredRight => UserRight.Guest; public TimeSpan Timeout => TimeSpan.FromSeconds(10);