diff --git a/Assets/ManagedResources/~Lua/Modules/Hero/HeroManager.lua b/Assets/ManagedResources/~Lua/Modules/Hero/HeroManager.lua index 71026c76ec..110cd2e35e 100644 --- a/Assets/ManagedResources/~Lua/Modules/Hero/HeroManager.lua +++ b/Assets/ManagedResources/~Lua/Modules/Hero/HeroManager.lua @@ -2840,10 +2840,12 @@ function this.GetFormationHeroRedPoint() end --化虚坛红点判断 function this.GetAllHeroCompoundRedPoint() - for i, v in pairs(heroDatas) do - if v.star == 4 or v.star == 5 then - if this.IsShowUpStarRedPoint(v,true) then - return true + if ActTimeCtrlManager.IsQualifiled(FUNCTION_OPEN_TYPE.COMPOUND_HERO) then + for i, v in pairs(heroDatas) do + if v.star == 4 or v.star == 5 then + if this.IsShowUpStarRedPoint(v,true) then + return true + end end end end