From 92d2770f988b8990285e2b1dad17e07f91e7a665 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 12 Oct 2025 12:55:21 -0500 Subject: [PATCH] Forgot to initialize scheduled deletions --- KfChatDotNetBot/ChatBot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/ChatBot.cs b/KfChatDotNetBot/ChatBot.cs index 1f2eea4..853ca98 100644 --- a/KfChatDotNetBot/ChatBot.cs +++ b/KfChatDotNetBot/ChatBot.cs @@ -34,7 +34,7 @@ public class ChatBot private int _joinFailures = 0; private Task _kfDeadBotDetection; private DateTime _lastReconnectAttempt = DateTime.UtcNow; - private List _scheduledDeletions; + private List _scheduledDeletions = []; private Task _scheduledAutoDeleteTask; public ChatBot()