From 78cfc50c9e41fee7cb3c426da2176db374a630d0 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Thu, 24 Jul 2025 23:06:13 +0200 Subject: [PATCH] slightly delay response --- app/TwitchBot/TwitchChatBot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/TwitchBot/TwitchChatBot.php b/app/TwitchBot/TwitchChatBot.php index 7b505ed..9ad2385 100644 --- a/app/TwitchBot/TwitchChatBot.php +++ b/app/TwitchBot/TwitchChatBot.php @@ -336,7 +336,7 @@ class TwitchChatBot extends TwitchBot { if ($this->isDirectedAtMe($msg->getText()) && $this->shouldRespond($channel)) { $this->noteChannelMessage($channel, $tokenized); $this->notes[$channel->id]['wait_msgs'] = 0; - $this->notes[$channel->id]['wait_time'] = 0; + $this->notes[$channel->id]['wait_time'] = 1; $response = $tokenized->getResponseCategory(); if ($response) { $this->queueSpecial($channel, $response); -- 2.39.5