From 509ddc71e9162b957e6c581910599eb7691ead9b Mon Sep 17 00:00:00 2001 From: SengokuCola <1026294844@qq.com> Date: Fri, 18 Apr 2025 10:13:14 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E9=A6=96=E6=AC=A1=E8=A7=A6?= =?UTF-8?q?=E5=8F=91=E5=A2=9E=E5=8A=A0=E7=9A=84=E6=97=B6=E9=97=B4=E4=BB=8E?= =?UTF-8?q?10=E7=A7=92=E6=94=B9=E4=B8=BA30=E7=A7=92=EF=BC=8C=E5=B9=B6?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AD=98=E5=82=A8=E4=B8=8A=E6=AC=A1=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E6=97=B6=E9=97=B4=E7=9A=84=E5=8F=98=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugins/chat_module/heartFC_chat/pf_chatting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/chat_module/heartFC_chat/pf_chatting.py b/src/plugins/chat_module/heartFC_chat/pf_chatting.py index f43471866..84d3271e8 100644 --- a/src/plugins/chat_module/heartFC_chat/pf_chatting.py +++ b/src/plugins/chat_module/heartFC_chat/pf_chatting.py @@ -92,7 +92,7 @@ class PFChatting: self._loop_active: bool = False # Is the loop currently running? self._loop_task: Optional[asyncio.Task] = None # Stores the main loop task self._trigger_count_this_activation: int = 0 # Counts triggers within an active period - self._initial_duration: float = 10.0 # 首次触发增加的时间 + self._initial_duration: float = 30.0 # 首次触发增加的时间 self._last_added_duration: float = self._initial_duration # <--- 新增:存储上次增加的时间 # Removed pending_replies as processing is now serial within the loop