Britbot
static bool Britbot.SmartIsland.IsNearNonOurIsland ( Location  loc,
int  Range 
) [inline, static]

Definition at line 230 of file SmartIsland.cs.

        {
            foreach (SmartIsland island in SmartIsland.IslandList)
            {
                if (island.Owner == Consts.ME)
                    continue;

                if (Bot.Game.Distance(loc, island) < Range)
                    return true;
            }
            return false;
        }