Increase default scan interval for idle bot harvesters

Every 2 seconds (at default speed) should be enough.
This commit is contained in:
reaperrr
2019-01-03 17:48:01 +01:00
committed by abcdefg30
parent 481e5e03d8
commit e36ef57e35

View File

@@ -22,7 +22,7 @@ namespace OpenRA.Mods.Common.Traits
public class HarvesterBotModuleInfo : ConditionalTraitInfo public class HarvesterBotModuleInfo : ConditionalTraitInfo
{ {
[Desc("Interval (in ticks) between giving out orders to idle harvesters.")] [Desc("Interval (in ticks) between giving out orders to idle harvesters.")]
public readonly int ScanForIdleHarvestersInterval = 20; public readonly int ScanForIdleHarvestersInterval = 50;
[Desc("Avoid enemy actors nearby when searching for a new resource patch. Should be somewhere near the max weapon range.")] [Desc("Avoid enemy actors nearby when searching for a new resource patch. Should be somewhere near the max weapon range.")]
public readonly WDist HarvesterEnemyAvoidanceRadius = WDist.FromCells(8); public readonly WDist HarvesterEnemyAvoidanceRadius = WDist.FromCells(8);