diff --git a/OpenRA.Mods.RA/SupportPowers/SupportPowerManager.cs b/OpenRA.Mods.RA/SupportPowers/SupportPowerManager.cs index 1aa535c135..dcb652c20c 100755 --- a/OpenRA.Mods.RA/SupportPowers/SupportPowerManager.cs +++ b/OpenRA.Mods.RA/SupportPowers/SupportPowerManager.cs @@ -136,7 +136,8 @@ namespace OpenRA.Mods.RA public void Tick() { - if (Disabled || Instances.All(i => i.self.IsDisabled())) + Active = Disabled || Instances.All(i => i.self.IsDisabled()); + if (!Active) return; if (Manager.devMode.FastCharge && RemainingTime > 25)