【关卡新条件】卸下再穿戴装备后关卡界面卡死

dev_chengFeng
gaoxin 2021-12-13 18:43:27 +08:00
parent 386e56aec0
commit 3d19df7cb2
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ function this.GetLimitStarEquipNum(star)
for _, hero in pairs(allHeroDatas) do
if hero.equipIdList and #hero.equipIdList > 0 then
for i = 1, #hero.equipIdList do
local id = hero.equipIdList[i]
local id = tonumber(hero.equipIdList[i])
if equipConfig[id].Star >= star then
allNum = allNum + 1
end