From dba8887cf16819776951e64218b57aae176ebed2 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期六, 20 十二月 2025 18:10:12 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(修复击杀目标时步练师无法上禁止复活buff;)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/TurnSkill.py |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/TurnSkill.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/TurnSkill.py
index bd24235..f967ef2 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/TurnSkill.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/TurnSkill.py
@@ -1777,8 +1777,11 @@
         for tagObj in tagObjList:
             tagID = tagObj.GetID()
             if not tagObj.IsAlive():
-                GameWorld.DebugLogEx("    已被击杀不触发: tagID=%s", tagID)
-                continue
+                if enhanceSkillData.GetCurBuffState() == ChConfig.BatObjState_RebornLimit:
+                    GameWorld.DebugLogEx("    禁止复活buff允许对死亡对象释放: tagID=%s", tagID)
+                else:
+                    GameWorld.DebugLogEx("    已被击杀不触发: tagID=%s", tagID)
+                    continue
             if tagID in effIgnoreObjIDList:
                 GameWorld.DebugLogEx("    闪避或免疫的不触发: tagID=%s", tagID)
                 continue

--
Gitblit v1.8.0