Fix FindActorsOnCircle summary

The summary was not entirely correct:
Since FAOC simply adds the largest existing OuterRadius to the specified circle range, it's still possible (very likely, in fact) for this helper to return actors whose HitShape is entirely outside the specified range (*without* the added largest OuterRadius).
This commit is contained in:
reaperrr
2018-03-25 03:36:13 +02:00
committed by reaperrr
parent b815e80e99
commit e2050dfdc9

View File

@@ -71,7 +71,7 @@ namespace OpenRA.Mods.Common
}
/// <summary>
/// Finds all the actors of which their health radius is intersected by a specified circle.
/// Finds all the actors of which their health radius might be intersected by a specified circle.
/// </summary>
public static IEnumerable<Actor> FindActorsOnCircle(this World world, WPos origin, WDist r)
{