ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Attack/BaseAttack.py
@@ -1490,12 +1490,14 @@
        if GameObj.GetHP(defender) <= 0:
            if hurtList[1] == IPY_GameWorld.gotPlayer:
                if hurtList[2] == ChConfig.Def_HurtType_Zhansha:
                    defender.SetDict("zhansha", 1)
                    defender.SetDict(ChConfig.Def_PlayerKey_Zhansha, 1)
                elif hurtList[2] == ChConfig.Def_HurtType_ZhognjiZhansha:
                    defender.SetDict(ChConfig.Def_PlayerKey_Zhansha, 2)
                # 濒死状态触发技能, 不能在GetHurtHP内部触发技能,否则会导致原技能的伤血列表异常
                PassiveBuffEffMng.OnPassiveSkillTrigger(defender, attacker, None, ChConfig.TriggerType_WillDead, tick)
                PassiveBuffEffMng.OnPassiveBuffTrigger(defender, attacker, None, ChConfig.TriggerType_WillDead, tick)
                if hurtList[2] == ChConfig.Def_HurtType_Zhansha:
                    defender.SetDict("zhansha", 0)
                if hurtList[2] in [ChConfig.Def_HurtType_Zhansha, ChConfig.Def_HurtType_ZhognjiZhansha]:
                    defender.SetDict(ChConfig.Def_PlayerKey_Zhansha, 0)
            continue
        
        if usePassiveSkillResult: