From bac98acce7bbded7e2367cd8e3b53313e85d5ae2 Mon Sep 17 00:00:00 2001 From: Curtis Shmyr Date: Sat, 14 Nov 2015 01:42:13 -0700 Subject: [PATCH] lower InfiltrateForPowerOutage time from 30->20sec --- OpenRA.Mods.RA/Traits/Infiltration/InfiltrateForPowerOutage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.RA/Traits/Infiltration/InfiltrateForPowerOutage.cs b/OpenRA.Mods.RA/Traits/Infiltration/InfiltrateForPowerOutage.cs index 7d4fd734eb..27c6a3b7a3 100644 --- a/OpenRA.Mods.RA/Traits/Infiltration/InfiltrateForPowerOutage.cs +++ b/OpenRA.Mods.RA/Traits/Infiltration/InfiltrateForPowerOutage.cs @@ -15,7 +15,7 @@ namespace OpenRA.Mods.RA.Traits { class InfiltrateForPowerOutageInfo : ITraitInfo { - public readonly int Duration = 25 * 30; + public readonly int Duration = 25 * 20; public object Create(ActorInitializer init) { return new InfiltrateForPowerOutage(init.Self, this); } }