From 608bd56472d25fcbccb572df24a71eab836e1fe7 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期二, 21 五月 2019 17:23:15 +0800
Subject: [PATCH] 6603 【后端】【2.0】增加新版的sp和被动技能 - 1090减速受符文影响

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

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTJG.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTJG.py
index 3b71ffc..eea0126 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTJG.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTJG.py
@@ -946,7 +946,7 @@
     
     ipyDataMgr = IpyGameDataPY.IPY_Data()
 
-    maxMapID = 0
+    maxMapID = 0    # 高级地图按表顺序行排
     # ---找到可以挂机的最高级地图---
     for i in xrange(ipyDataMgr.GetMapEventPointCount()):
         mapInfo = ipyDataMgr.GetMapEventPointByIndex(i)
@@ -958,7 +958,7 @@
         # ---判断地图表的任务和等级限制---
         mapData = GameWorld.GetGameData().GetChinMap().GetMapByID(mapID)
         if not mapData:
-            continue 
+            continue
         enterLV = mapData.GetLV()
     
         if curPlayer.GetLV() < enterLV:
@@ -967,8 +967,6 @@
         if missionMapStep < openMapStep:
             continue
 
-        if mapID < maxMapID:
-            continue
         maxMapID = mapID
         
     if not maxMapID:

--
Gitblit v1.8.0