Chronotank jump cooldown lowered from 60 seconds to 30

This commit is contained in:
Curtis Shmyr
2012-10-13 15:48:09 -06:00
parent 5dc0439173
commit edd41c5be1

View File

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