From 9f07f6cf21dddc7a72164d84e396c9a67415aa94 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 11 Aug 2024 22:31:27 +0800 Subject: [PATCH] Forgot to bypass GambaSesh detection --- KfChatDotNetBot/Commands/TestCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/TestCommands.cs b/KfChatDotNetBot/Commands/TestCommands.cs index 5a57a85..cc25c76 100644 --- a/KfChatDotNetBot/Commands/TestCommands.cs +++ b/KfChatDotNetBot/Commands/TestCommands.cs @@ -23,7 +23,7 @@ public class EditTestCommand : ICommand var iterations = 3; var i = 0; var delay = 1000; - var reference = botInstance.SendChatMessage($"{msg} {i}"); + var reference = botInstance.SendChatMessage($"{msg} {i}", true); while (botInstance.GetSentMessageStatus(reference).Status == SentMessageTrackerStatus.WaitingForResponse) { await Task.Delay(100, ctx);