【鸿蒙阵】 升星红点检测添加鸿蒙共鸣条件

dev_chengFeng
zhangqiang 2021-02-20 13:56:16 +08:00
parent 39686223d0
commit b6e56efd1c
1 changed files with 3 additions and 1 deletions

View File

@ -2890,7 +2890,9 @@ function this.IsShowUpStarRedPoint(curHeroData)
upStarHeroListData.heroList[j].lockState == 0 and
upStarHeroListData.heroList[j].isFormation == "" and
#curSelectHeroList < curSelectUpStarData.upStarData[4] and
not upStarConsumeMaterial[upStarHeroListData.heroList[j].dynamicId]
not upStarConsumeMaterial[upStarHeroListData.heroList[j].dynamicId] and
not HarmonyManager.IsChangeColor(upStarHeroListData.heroList[j].dynamicId) and
not (HarmonyManager:IsEnvoy(upStarHeroListData.heroList[j].dynamicId) and HarmonyManager.GetSingleAdditionsData(HarmonyAddType.AddLv) and HarmonyManager.GetSingleAdditionsData(HarmonyAddType.AddLv).heroTid == 0)
then
table.insert(curSelectHeroList, upStarHeroListData.heroList[j])
end