From 9b677107ec2a24b4d68930b77cf5a3dc01949bac Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sat, 20 Apr 2013 21:33:54 +1200 Subject: [PATCH 1/2] 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); } } From 9a65399fed4313c497ab22c7616da9b3e6b7216c Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sat, 20 Apr 2013 21:34:03 +1200 Subject: [PATCH 2/2] unlag move order response --- OpenRA.Mods.RA/Move/Mobile.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/Move/Mobile.cs b/OpenRA.Mods.RA/Move/Mobile.cs index a3ab8fd27c..05aa0567f0 100755 --- a/OpenRA.Mods.RA/Move/Mobile.cs +++ b/OpenRA.Mods.RA/Move/Mobile.cs @@ -26,8 +26,8 @@ namespace OpenRA.Mods.RA.Move public readonly Dictionary TerrainSpeeds; [Desc("e.g. crate, wall, infantry")] public readonly string[] Crushes; - public readonly int WaitAverage = 60; - public readonly int WaitSpread = 20; + public readonly int WaitAverage = 5; + public readonly int WaitSpread = 2; public readonly int InitialFacing = 128; [Desc("Rate of Turning")] public readonly int ROT = 255;