Reduce default warhead TargetExtraSearchRadius

There aren't any actors in any shipping mod where a health radius larger
than 1c512 would be feasible, so no need to make the default larger than necessary.
This commit is contained in:
reaperrr
2015-10-25 14:23:37 +01:00
parent fa29b16967
commit 731875c270

View File

@@ -22,7 +22,7 @@ namespace OpenRA.Mods.Common.Warheads
public readonly WDist Spread = new WDist(43);
[Desc("Extra search radius beyond maximum spread. Required to ensure damage to actors with large health radius.")]
public readonly WDist TargetExtraSearchRadius = new WDist(2048);
public readonly WDist TargetExtraSearchRadius = new WDist(1536);
[Desc("Damage percentage at each range step")]
public readonly int[] Falloff = { 100, 37, 14, 5, 0 };