From d3141684a2efd63ec4d70a6d26cd771fe2b257b8 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 20 十一月 2019 16:39:56 +0800 Subject: [PATCH] 8341 【恺英】【后端】强化进化系统优化(强化等级上限修改为关联进化等级,去除星级关联,进化修改) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/SetEquipPartPlusLV.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/SetEquipPartPlusLV.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/SetEquipPartPlusLV.py index dfcfe17..06c8127 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/SetEquipPartPlusLV.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/SetEquipPartPlusLV.py @@ -81,7 +81,8 @@ gridIndex = ipyData.GetGridIndex() curEquip = curPack.GetAt(gridIndex) ChEquip.SetEquipPartPlusLV(curPlayer, packType, gridIndex, curEquip, starLV) - ChEquip.SetEquipPartProficiency(curPlayer, packType, gridIndex, evolveLV) + ChEquip.SetEquipPartProficiency(curPlayer, packType, gridIndex, 0) + ChEquip.SetEquipPartPlusEvolveLV(curPlayer, packType, gridIndex, evolveLV) GameWorld.DebugAnswer(curPlayer, "设置%s阶%s部位强化等级(%s),进化等级(%s)" % (classLV, equipPlace, starLV, evolveLV)) refreshClassLV = classLV -- Gitblit v1.8.0