From 771f62cd27d62ad60c18258bb6a8ff334ef50bde Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期五, 10 五月 2019 15:15:53 +0800 Subject: [PATCH] 6735 【2.0】【后端】境界装备升星需求变更 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_EquipStar.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_EquipStar.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_EquipStar.py index 6623a9b..83a3a01 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_EquipStar.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_EquipStar.py @@ -113,6 +113,7 @@ return result costEquipPlaceList = ipyData.GetCostEquipPlace() costEquipColorList = ipyData.GetCostEquipColor() + isJobLimit = ipyData.GetIsJobLimit() suitTotalRate = ipyData.GetSuitTotalRate() itemPack = curPlayer.GetItemManager().GetPack(IPY_GameWorld.rptItem) delEquipIndexList = [] @@ -134,6 +135,8 @@ return result if costEquip.GetEquipPlace() not in costEquipPlaceList: return result + if isJobLimit and not ItemCommon.CheckJob(curPlayer, costEquip): + return result delEquipIndexList.append(index) isSuite = costEquip.GetSuiteID() addRate = singleSuitRate if isSuite else singleSuitRate / 2 -- Gitblit v1.8.0