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:
@@ -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 };
|
||||
|
||||
Reference in New Issue
Block a user