From 6bc8a17ed56027c54cdd523dda04a049f5e2e8dd Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期三, 21 一月 2026 10:40:54 +0800
Subject: [PATCH] 125 战斗 修复战斗卡死问题 并移除了子技能的设计 只有内嵌技能

---
 Main/System/Battle/BattleTweenMgr.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Main/System/Battle/BattleTweenMgr.cs b/Main/System/Battle/BattleTweenMgr.cs
index 15628b4..794664f 100644
--- a/Main/System/Battle/BattleTweenMgr.cs
+++ b/Main/System/Battle/BattleTweenMgr.cs
@@ -56,9 +56,9 @@
         tween.Play();
     }
 
-    public void OnKillTween(Tween tween)
+    public void OnKillTween(Tween tween, bool complete = false)
     {
-        tween?.Kill();
+        tween?.Kill(complete);
         if (tween != null && tweenList.Contains(tween))
         {
             tweenList.Remove(tween);

--
Gitblit v1.8.0