去掉log

dev_chengFeng
jiaoyangna 2020-07-17 11:38:18 +08:00
parent adc5895d94
commit 96c16ca7f8
2 changed files with 0 additions and 6 deletions

View File

@ -90,7 +90,6 @@ function this:OnShow(_parent,...)
local data={}
local index = 1
for i, v in pairs(dropList) do
LogBlue("v.id:"..v.id.." v.num:"..v.num)
data[index]={v.id,v.num}
index = index + 1
end

View File

@ -561,12 +561,10 @@ function this.GetEquipTreasureResolveItems(selectEquipTreasureData)
if not curEquipTreasureData then return end
--先把精炼的材料放进去 因为有宝器 放前边
if curEquipTreasureData.refineLv > 0 then
LogBlue(curEquipTreasureData.refineLv)
for i=0,curEquipTreasureData.refineLv-1 do
local refineJewelRankupConfig =ConfigManager.TryGetConfigDataByThreeKey(ConfigName.JewelRankupConfig,"Type",2,"Level",i,"PoolID",curEquipTreasureData.quantity)
if refineJewelRankupConfig then
--精炼消耗的法宝
LogBlue(refineJewelRankupConfig.Id)
if refineJewelRankupConfig.JewelExpend then
for JewelExpendkey, JewelExpendvalue in ipairs(refineJewelRankupConfig.JewelExpend) do
if JewelExpendvalue[1] == 1 then
@ -586,12 +584,10 @@ function this.GetEquipTreasureResolveItems(selectEquipTreasureData)
end
end
if curEquipTreasureData.lv > 0 then
LogBlue(curEquipTreasureData.lv)
for i=0,curEquipTreasureData.lv - 1 do
local lvJewelRankupConfig = ConfigManager.TryGetConfigDataByThreeKey(ConfigName.JewelRankupConfig,"Type",1,"Level",i,"PoolID",curEquipTreasureData.quantity)
if lvJewelRankupConfig then
--强化消耗的材料
LogBlue(refineJewelRankupConfig.Id)
if lvJewelRankupConfig.UpExpend then
for UpExpendkey, UpExpendvalue in ipairs(lvJewelRankupConfig.UpExpend) do
this.GetEquipTreasureResolveItems2(UpExpendvalue[1], UpExpendvalue[2])
@ -612,7 +608,6 @@ function this.GetEquipTreasureResolveItems(selectEquipTreasureData)
end
local dropList = {}
for ShowItemlistkey, ShowItemlistvalue in pairs(ShowItemlist) do
LogBlue("id:"..ShowItemlistkey.." num:"..ShowItemlistvalue)
local curReward = {}
curReward.id = ShowItemlistkey
curReward.num = math.floor(ShowItemlistvalue * specificValue)