From 0063d3fb2ccf7144f27e2f0ce12a58382a2475e9 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期四, 11 四月 2019 15:38:01 +0800
Subject: [PATCH] 6501 【后端】【2.0】仙盟任务

---
 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