Added an alias for cracked command

This commit is contained in:
barelyprofessional
2024-09-14 16:43:43 +08:00
parent 02228295b7
commit f588e79309

View File

@@ -76,7 +76,10 @@ public class GmKasinoCommand : ICommand
public class CrackedCommand : ICommand
{
public List<Regex> Patterns => [new Regex("^cracked (?<msg>.+)")];
public List<Regex> Patterns => [
new Regex("^cracked (?<msg>.+)"),
new Regex("^crackhead (?<msg>.+)")
];
public string? HelpText => "Crackhead Zalgo text";
public UserRight RequiredRight => UserRight.Guest;
public TimeSpan Timeout => TimeSpan.FromSeconds(10);