From e36ef57e356df6a13b49d2c43ef65f52c99a398b Mon Sep 17 00:00:00 2001 From: reaperrr Date: Thu, 3 Jan 2019 17:48:01 +0100 Subject: [PATCH] Increase default scan interval for idle bot harvesters Every 2 seconds (at default speed) should be enough. --- OpenRA.Mods.Common/Traits/BotModules/HarvesterBotModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/BotModules/HarvesterBotModule.cs b/OpenRA.Mods.Common/Traits/BotModules/HarvesterBotModule.cs index 192c4b7491..2146bf6457 100644 --- a/OpenRA.Mods.Common/Traits/BotModules/HarvesterBotModule.cs +++ b/OpenRA.Mods.Common/Traits/BotModules/HarvesterBotModule.cs @@ -22,7 +22,7 @@ namespace OpenRA.Mods.Common.Traits public class HarvesterBotModuleInfo : ConditionalTraitInfo { [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.")] public readonly WDist HarvesterEnemyAvoidanceRadius = WDist.FromCells(8);