神魂修改提交

dev_chengFeng
jiaoyangna 2021-10-27 17:42:50 +08:00
parent 9f59cb3b64
commit eadf4a4f1c
2 changed files with 4 additions and 5 deletions

View File

@ -74,10 +74,6 @@ function GeneralBigPopup:BindEvent()
Game.GlobalEvent:DispatchEvent(GameEvent.Bag.OnTempBagChanged)
self:ClosePanel()
end)
Util.AddClick(this.Mask,function()
Game.GlobalEvent:DispatchEvent(GameEvent.Bag.OnTempBagChanged)
self:ClosePanel()
end)
end
function GeneralBigPopup:AddListener()

View File

@ -203,7 +203,10 @@ function this.GetBindHeroDatasByLevel(id,lv)
end
for k,v in pairs(this.heroDatas[id].BindHeroDatas) do
if k == lv then
return v
for i = 1,#v do
table.insert(data,v[i])
end
break
end
end
return data