diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs index dbfbd74352..b77e49cbd5 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs @@ -12,15 +12,15 @@ public sealed class AirAlarmBoundUserInterface : BoundUserInterface { private AirAlarmWindow? _window; - public AirAlarmBoundUserInterface(ClientUserInterfaceComponent owner, object uiKey) : base(owner, uiKey) + public AirAlarmBoundUserInterface(ClientUserInterfaceComponent owner, Enum uiKey) : base(owner, uiKey) {} protected override void Open() { base.Open(); - + _window = new AirAlarmWindow(); - + if (State != null) UpdateState(State); _window.OpenCentered();