From ef759fd5eb134d9bf6246d77d2d5240c649f6640 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期五, 17 五月 2019 17:47:52 +0800
Subject: [PATCH] 1 MissionDir命令增加输出DescriptionIndex
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/EnterFB.py | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/EnterFB.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/EnterFB.py
index 511fd18..a228fff 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/EnterFB.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/EnterFB.py
@@ -37,6 +37,9 @@
posY = paramList[3] if len(paramList) > 3 else 0
if FBCommon.GetFBPDictValue(curPlayer, ChConfig.Def_PDict_LastEnterFBTick % mapID):
FBCommon.SetFBPDictValue(curPlayer, ChConfig.Def_PDict_LastEnterFBTick % mapID, 0)
- PlayerControl.PlayerEnterFB(curPlayer, mapID, lineID, posX, posY)
+ if mapID in ChConfig.Def_CrossMapIDList:
+ PlayerControl.PlayerEnterCrossServer(curPlayer, mapID, lineID)
+ else:
+ PlayerControl.PlayerEnterFB(curPlayer, mapID, lineID, posX, posY)
return
--
Gitblit v1.8.0