From 91878d92b5c960d8201d0544b9534ff5f8bfe73f Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Tue, 9 Dec 2025 22:29:07 -0600 Subject: [PATCH] Fixed broken cleanup for lambchop and missing sesh bypass --- KfChatDotNetBot/Commands/Kasino/LambchopCommand.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/Kasino/LambchopCommand.cs b/KfChatDotNetBot/Commands/Kasino/LambchopCommand.cs index 9d0d89f..55fb520 100644 --- a/KfChatDotNetBot/Commands/Kasino/LambchopCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/LambchopCommand.cs @@ -110,7 +110,8 @@ public class LambchopCommand : ICommand } // first game state var lambChopDisplayMessage = - await botInstance.SendChatMessageAsync(ConvertLambchopFieldToString(tiles, hazards, true)); + await botInstance.SendChatMessageAsync(ConvertLambchopFieldToString(tiles, hazards, true), true, + autoDeleteAfter: cleanupDelay); while (lambChopDisplayMessage.Status != SentMessageTrackerStatus.ResponseReceived) { await Task.Delay(50, ctx); // wait until first message is fully sent