From c5bd08acfd7614ee1016823aa2d496369a1fccbc Mon Sep 17 00:00:00 2001 From: GeWuYou <95328647+GeWuYou@users.noreply.github.com> Date: Fri, 6 Mar 2026 16:58:27 +0800 Subject: [PATCH] =?UTF-8?q?fix(events):=20=E4=BF=AE=E6=AD=A3=E4=BC=98?= =?UTF-8?q?=E5=85=88=E7=BA=A7=E4=BA=8B=E4=BB=B6=E8=A7=A6=E5=8F=91=E4=BC=A0?= =?UTF-8?q?=E6=92=AD=E8=A1=8C=E4=B8=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将优先级事件的传播模式从 Continue 修改为 All - 确保事件能够正确传递到所有监听器 --- GFramework.Core/events/StatisticsEventDecorator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GFramework.Core/events/StatisticsEventDecorator.cs b/GFramework.Core/events/StatisticsEventDecorator.cs index ac9e3a5..41bdf85 100644 --- a/GFramework.Core/events/StatisticsEventDecorator.cs +++ b/GFramework.Core/events/StatisticsEventDecorator.cs @@ -83,7 +83,7 @@ internal sealed class StatisticsEventDecorator } else if (_innerEvent is PriorityEvent priorityEvent) { - priorityEvent.Trigger(data, EventPropagation.Continue); + priorityEvent.Trigger(data, EventPropagation.All); } }