hxp
2023-01-12 063c37a60dfad1fad8e31ee235e0d69c3ae35481
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_EquipWash.py
@@ -454,7 +454,7 @@
    playControl.RefreshPlayerAttrState()
    return
def CalcAttr_EquipWash(curPlayer, equipIndex, equipPlace, allAttrList):
def CalcAttr_EquipWash(curPlayer, equipIndex, equipPlace, baseAttrDictWash, allAttrList):
    ## 装备位洗练属性
    washLV = curPlayer.NomalDictGetProperty(ChConfig.Def_PDict_EquipWashLV % equipIndex)
    maxWashLV = GetEquipWashMaxLV(curPlayer, equipIndex, equipPlace)
@@ -474,6 +474,7 @@
        #GameWorld.DebugLog("    attrNum=%s,attrID=%s, attrValue=%s" % (attrNum, attrID, attrValue))
        if attrValue:
            PlayerControl.CalcAttrDict_Type(attrID, attrValue, allAttrList)
            baseAttrDictWash[attrID] = baseAttrDictWash.get(attrID, 0) + attrValue
    return
def EquipWashSuccess(curPlayer, classLV):