diff --git a/Content.Client/Power/PowerMonitoringWindow.xaml.cs b/Content.Client/Power/PowerMonitoringWindow.xaml.cs index 30d0b16dd45..9e380bcd2d3 100644 --- a/Content.Client/Power/PowerMonitoringWindow.xaml.cs +++ b/Content.Client/Power/PowerMonitoringWindow.xaml.cs @@ -18,7 +18,7 @@ public sealed partial class PowerMonitoringWindow : FancyWindow [Dependency] private IEntityManager _entManager = default!; private readonly SpriteSystem _spriteSystem; [Dependency] private IGameTiming _gameTiming = default!; - [Dependency] private SharedTransformSystem _transformSystem = default!; // Frontier modification + private SharedTransformSystem _transformSystem; // Frontier modification private const float BlinkFrequency = 1f; @@ -42,6 +42,7 @@ public PowerMonitoringWindow() IoCManager.InjectDependencies(this); _spriteSystem = _entManager.System(); + _transformSystem = _entManager.System(); // Frontier // Set trackable entity selected action NavMap.TrackedEntitySelectedAction += SetTrackedEntityFromNavMap;