From 5c08fa1fdaf2dbebe6838456fc16fd9cd161e499 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 11 二月 2020 00:28:53 +0800
Subject: [PATCH] 8375 【主干】【后端】秘境探索修改(增加B029查询活跃放置信息封包)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Attack/AttackLogic/Player_Attack_SummonNPC.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Attack/AttackLogic/Player_Attack_SummonNPC.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Attack/AttackLogic/Player_Attack_SummonNPC.py
index 3873af4..bda684b 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Attack/AttackLogic/Player_Attack_SummonNPC.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Attack/AttackLogic/Player_Attack_SummonNPC.py
@@ -70,7 +70,8 @@
     
     #私有木桩只能自己打自己的
     if curTagSummonNPC.GetType() in [ChConfig.ntPriWoodPilePVE, ChConfig.ntPriWoodPilePVP]:
-        if not GameWorld.IsSameObj(curPlayer, curTagPlayer):
+        summonPlayerID = curTagSummonNPC.GetDictByKey(ChConfig.Def_NPC_Dict_PriWoodPilePlayerID)
+        if curPlayer.GetPlayerID() != summonPlayerID:
             return ChConfig.Type_Relation_Friend , ChConfig.Def_PASysMessage_None
         return ChConfig.Type_Relation_Enemy , ChConfig.Def_PASysMessage_None
     

--
Gitblit v1.8.0