Merge pull request #9984 from cjshmyr/spypowerdrain

Lower Spy's InfiltrateForPowerOutage time from 30->20sec
This commit is contained in:
Paul Chote
2015-11-14 19:33:03 +00:00

View File

@@ -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); }
}