From 9b677107ec2a24b4d68930b77cf5a3dc01949bac Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sat, 20 Apr 2013 21:33:54 +1200 Subject: [PATCH] unlag autotarget response --- OpenRA.Mods.RA/AutoTarget.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/AutoTarget.cs b/OpenRA.Mods.RA/AutoTarget.cs index 9441f8361f..0dbbfd5a47 100644 --- a/OpenRA.Mods.RA/AutoTarget.cs +++ b/OpenRA.Mods.RA/AutoTarget.cs @@ -24,9 +24,9 @@ namespace OpenRA.Mods.RA public readonly UnitStance InitialStance = UnitStance.AttackAnything; [Desc("Ticks to wait until next AutoTarget: attempt.")] - public readonly int MinimumScanTimeInterval = 30; + public readonly int MinimumScanTimeInterval = 3; [Desc("Ticks to wait until next AutoTarget: attempt.")] - public readonly int MaximumScanTimeInterval = 60; + public readonly int MaximumScanTimeInterval = 8; public object Create(ActorInitializer init) { return new AutoTarget(init.self, this); } }