Cindeck.Core.Simulator.SelectSupportMembers C# (CSharp) Method

SelectSupportMembers() private method

private SelectSupportMembers ( ) : List
return List
        private List<OwnedIdol> SelectSupportMembers()
        {
            if (Song == null || !EnableSupportMembers || Unit == null)
            {
                return new List<OwnedIdol>();
            }

            return m_config.OwnedIdols.Where(x => !Unit.OccupiedByUnit(x))
                .OrderByDescending(x => CalculateAppeal(x, true)).Take(10).ToList();
        }