From b1bb52bb7c6e5c36471140bf383be02d35fe92d4 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期五, 11 一月 2019 22:34:21 +0800
Subject: [PATCH] 2857 【BUG】【1.5】采集被打断问题

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerMissionCollect.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerMissionCollect.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerMissionCollect.py
index a7b24d9..c7ef269 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerMissionCollect.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerMissionCollect.py
@@ -51,18 +51,18 @@
     tagObj = curPlayer.GetActionObj()
     if tagObj == None:
         #没有目标
-        GameWorld.Log("FuncCall -> 没有目标" , curPlayer.GetPlayerID())
+        GameWorld.Log("GetActionNPCbyType -> 没有目标" , curPlayer.GetPlayerID())
         return
     
     if tagObj.GetGameObjType() != IPY_GameWorld.gotNPC:
         #谈话对象不对
-        GameWorld.Log("FuncCall -> 谈话对象不对" , curPlayer.GetPlayerID())
+        GameWorld.Log("GetActionNPCbyType -> 谈话对象不对" , curPlayer.GetPlayerID())
         return
     
     curNPC = GameWorld.GetNPCManager().GetNPCByIndex(tagObj.GetIndex())
     if curNPC == None:
         #没有这个NPC
-        GameWorld.Log("FuncCall ->没有这个NPC" , curPlayer.GetPlayerID())
+        GameWorld.Log("GetActionNPCbyType ->没有这个NPC" , curPlayer.GetPlayerID())
         return
     
     if curNPC.GetType() != npcType:

--
Gitblit v1.8.0