hxp
2019-03-28 b69fe56d5ebb784c4430cb5e86f460efafa1b30a
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py
@@ -578,7 +578,7 @@
    return incRateItemCostList, expireTime
def __CheckItemCanUseCompound(playerID, index, curItem):
    if not ItemCommon.CheckItemCanUse(curItem):
    if not ItemCommon.CheckItemCanUse(curItem) or ItemControler.GetIsAuctionItem(curItem):
        GameWorld.DebugLog("该物品不可使用!无法合成! index=%s" % (index), playerID)
        return
    
@@ -710,7 +710,7 @@
        return
    curEquip = itemPack.GetAt(decompoundItemIndex)
    
    if not ItemCommon.CheckItemCanUse(curEquip):
    if not ItemCommon.CheckItemCanUse(curEquip) or ItemControler.GetIsAuctionItem(curEquip):
        return
    
    attrCount = curEquip.GetUserAttrCount(ShareDefine.Def_IudetItemDecompound)