From efd8fc71a66437c413b0c8770541ef9ca5ed5960 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 09 九月 2019 17:54:38 +0800 Subject: [PATCH] 8255 【后端】【主干】拍品可使用及上下架优化(拍品可直接使用) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py index 2eb2541..c2a7477 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py @@ -676,7 +676,7 @@ return incRateItemCostList, expireTime def __CheckItemCanUseCompound(playerID, index, curItem): - if not ItemCommon.CheckItemCanUse(curItem) or ItemControler.GetIsAuctionItem(curItem): + if not ItemCommon.CheckItemCanUse(curItem): GameWorld.DebugLog("该物品不可使用!无法合成! index=%s" % (index), playerID) return @@ -841,7 +841,7 @@ return curEquip = itemPack.GetAt(decompoundItemIndex) - if not ItemCommon.CheckItemCanUse(curEquip) or ItemControler.GetIsAuctionItem(curEquip): + if not ItemCommon.CheckItemCanUse(curEquip): return attrCount = curEquip.GetUserAttrCount(ShareDefine.Def_IudetItemDecompound) -- Gitblit v1.8.0