diff --git a/KfChatDotNetBot/Commands/MemeCommands.cs b/KfChatDotNetBot/Commands/MemeCommands.cs index 44b02cc..cf83ffb 100644 --- a/KfChatDotNetBot/Commands/MemeCommands.cs +++ b/KfChatDotNetBot/Commands/MemeCommands.cs @@ -318,4 +318,17 @@ public class JailCommand : ICommand var timespan = DateTimeOffset.UtcNow - DateTimeOffset.Parse(start.Value); await botInstance.SendChatMessageAsync($"Bossman has been in jail {timespan.Humanize(precision:5)}", true); } +} + +public class BassmanJack : ICommand +{ + public List Patterns => [new Regex("^bassmanjack")]; + public string? HelpText => "Bassman image"; + public UserRight RequiredRight => UserRight.Guest; + public TimeSpan Timeout => TimeSpan.FromSeconds(10); + public async Task RunCommand(ChatBot botInstance, MessageModel message, UserDbModel user, GroupCollection arguments, CancellationToken ctx) + { + // ReSharper disable once StringLiteralTypo + await botInstance.SendChatMessageAsync("[img]https://i.postimg.cc/SRstzMQt/boss-soy-koi.gif[/img]", true); + } } \ No newline at end of file