From edd41c5be1e90a55c02ba81429cff00ab9c76c30 Mon Sep 17 00:00:00 2001 From: Curtis Shmyr Date: Sat, 13 Oct 2012 15:48:09 -0600 Subject: [PATCH] Chronotank jump cooldown lowered from 60 seconds to 30 --- OpenRA.Mods.RA/ChronoshiftDeploy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.RA/ChronoshiftDeploy.cs b/OpenRA.Mods.RA/ChronoshiftDeploy.cs index 3f4fa6c0e2..f3c9d72a3b 100644 --- a/OpenRA.Mods.RA/ChronoshiftDeploy.cs +++ b/OpenRA.Mods.RA/ChronoshiftDeploy.cs @@ -20,7 +20,7 @@ namespace OpenRA.Mods.RA { class ChronoshiftDeployInfo : ITraitInfo { - public readonly int ChargeTime = 60; // seconds + public readonly int ChargeTime = 30; // seconds public readonly int JumpDistance = 10; public object Create(ActorInitializer init) { return new ChronoshiftDeploy(init.self, this); } }