From 33c902a503e4da79612405176498e10dcb2cdb1f Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 31 三月 2020 17:29:12 +0800 Subject: [PATCH] 8405 【后端】成就系统开发(优化按境界阶更新成就进度逻辑;增加多成就条件向下适配更新成就进度模式;坐骑成就修改;增加天星塔成就) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerWing.py | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerWing.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerWing.py index eec57fe..e28e859 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerWing.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerWing.py @@ -238,18 +238,18 @@ # 更新翅膀精炼颜色 wingColorDict = wingAttrIpyData.GetItemColorInfo() curColor = curWing.GetUserAttr(ShareDefine.Def_IudetItemColor) - isColorChange = False + #isColorChange = False for color in wingColorDict: if updWingProgress >= wingColorDict[color] and color > curColor: curColor = color curWing.SetUserAttr(ShareDefine.Def_IudetItemColor, curColor) GameWorld.DebugLog(" 更新翅膀颜色: updWingProgress=%s,curColor=%s" % (updWingProgress, curColor)) - isColorChange = True + #isColorChange = True maxRefineExp = wingAttrIpyData.GetMaxRefineExp() if curPlayer and wingProgress < maxRefineExp <= updWingProgress: PlayerControl.WorldNotify(0, "WingsRefinePerfect", [curPlayer.GetPlayerName(), curItemID, curWing.GetUserData()]) - if curPlayer and isColorChange: - PlayerSuccess.DoEquipSuccessLogic(curPlayer) + #if curPlayer and isColorChange: + # PlayerSuccess.DoEquipSuccessLogic(curPlayer) return def GetWingRefineAttrData(itemID): -- Gitblit v1.8.0