ArcAnnihilation.Objects.Tempest.GetFullyCloneList C# (CSharp) Method

GetFullyCloneList() public static method

public static GetFullyCloneList ( Hero me ) : IEnumerable
me Hero
return IEnumerable
            public static IEnumerable<Hero> GetFullyCloneList(Hero me)
            {
                if (!Utils.SleepCheck("Tempest.refresh.fully")) return _clonesF;
                _clonesF = ObjectManager.GetEntities<Hero>()
                    .Where(
                        x =>
                            !Equals(x, me) && x.IsControllable && x.Team == me.Team).ToList();
                if (_clonesF.Any())
                    Utils.Sleep(100, "Tempest.refresh.fully");
                return _clonesF;
            }