From 8f983d0dab26becb6b85dbbb616fde21c3ad8f02 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期三, 20 八月 2025 18:40:23 +0800
Subject: [PATCH] 125 【战斗】战斗系统

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

diff --git a/Main/System/Battle/BattleTweenMgr.cs b/Main/System/Battle/BattleTweenMgr.cs
index ce43c00..182e80e 100644
--- a/Main/System/Battle/BattleTweenMgr.cs
+++ b/Main/System/Battle/BattleTweenMgr.cs
@@ -44,12 +44,12 @@
         }
 
         tweenList.Add(tween);
-        tween.OnComplete(() =>
-        {
+        tween.onComplete += () =>
+        { 
             tweenList.Remove(tween);
-        });
+        };
 
-        tween.Play();
+        // tween.Play();
     }
 
     public void HaveRest()

--
Gitblit v1.8.0