yyl
7 天以前 aee07e17664b4e598f4bc54460cffce26b8b823f
Main/System/HeroUI/HeroUIManager.Reborn.cs
@@ -119,14 +119,31 @@
        int specialAttrType = selectList[4];
        List<string> retGuidList = new List<string>();
        List<int> fullStarHeroIDList = new List<int>();
        foreach (var heroInfo in _list)
        {
            if (heroInfo.heroStar < heroInfo.GetCurMaxStar())
            {
                //相同武将中已经有满星的
                continue;
            }
            var heorID = heroInfo.heroId;
            if (fullStarHeroIDList.Contains(heorID))
                continue;
            fullStarHeroIDList.Add(heorID);
        }
        foreach (var heroInfo in _list)
        {
            if (heroInfo.isAttrActive)
                continue;
            if (heroInfo.heroStar < heroInfo.GetCurMaxStar())
            if (!fullStarHeroIDList.Contains(heroInfo.heroId))
            {
                //相同武将中已经有满星的
                continue;
            }