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