| | |
| | | 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; |
| | | } |
| | | |