From 0f297a5b66b91751d8342624db871efeca7ed94e Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期六, 02 三月 2019 10:20:48 +0800 Subject: [PATCH] 6307 【后端】【2.0】多套装备开发单(穿脱、升星) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerViewCacheTube.py | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerViewCacheTube.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerViewCacheTube.py index bb88c0b..f0761e5 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerViewCacheTube.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerViewCacheTube.py @@ -142,7 +142,7 @@ #翅膀信息在翅膀装备位对应装备信息 #部位强化数据 - curPlayerPlusDict["EquipPartStarLV"] = __GetEquipPartStarLVInfo(curPlayer) + curPlayerPlusDict["EquipPartStarLV"] = __GetEquipPartPlusLVInfo(curPlayer) #部位宝石数据 curPlayerPlusDict["EquipPartStone"] = __GetEquipPartStoneInfo(curPlayer) @@ -182,13 +182,13 @@ dataDict.pop(key) return dataDict -## 公共部位强化星级信息{部位索引:星级, ...} -def __GetEquipPartStarLVInfo(curPlayer): +## 公共部位强化星级信息{部位索引:强化等级, ...} +def __GetEquipPartPlusLVInfo(curPlayer): pType = IPY_GameWorld.rptEquip # 暂时只取装备背包,之后有扩展再修改 indexList = ChConfig.Pack_EquipPart_CanPlusStar[pType] starLVInfoDict = {} for i in indexList: - starLV = ChEquip.GetEquipPartStarLV(curPlayer, pType, i) + starLV = ChEquip.GetEquipPartPlusLV(curPlayer, pType, i) if starLV: starLVInfoDict[i] = starLV return starLVInfoDict -- Gitblit v1.8.0