From dbd01953dab4d70a8854106bc9e0992f8fc04266 Mon Sep 17 00:00:00 2001 From: hch <305670599@qq.com> Date: 星期六, 05 一月 2019 18:29:01 +0800 Subject: [PATCH] 860312 增加切换地图输出便于查切图问题 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py index a0941be..f0bf6af 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py @@ -1944,16 +1944,18 @@ sendPack.FuncLineID = funcLineID NetPackCommon.SendFakePack(curPlayer, sendPack) + GameWorld.Log("准备切换地图", curPlayer.GetID()) return # 通知开始切换地图 def NotifyStartChangeMap(curPlayer): - GameWorld.DebugLog("通知开始切换地图, NotifyStartChangeMap") sendPack = ChPyNetSendPack.tagMCStartChangeMap() sendPack.Clear() sendPack.MapID = curPlayer.GetDictByKey(ChConfig.Def_PlayerKey_ChangeMapID) sendPack.FuncLineID = curPlayer.NomalDictGetProperty(ChConfig.Def_Player_Dict_ReqFBFuncLine) NetPackCommon.SendFakePack(curPlayer, sendPack) + + GameWorld.Log("通知开始切换地图", curPlayer.GetID()) return #--------------------------------------------------------------------- -- Gitblit v1.8.0