From: osjarw <62134478+osjarw@users.noreply.github.com> Date: Wed, 19 Jun 2024 00:20:57 +0000 (+0300) Subject: Fix air alarms (#29172) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=707f1f4981ce1e0bdc6c8356351f25d370c84a70;p=space-station-14.git Fix air alarms (#29172) Broken by #28272 --- diff --git a/Content.Server/Atmos/Monitor/Systems/AtmosAlarmableSystem.cs b/Content.Server/Atmos/Monitor/Systems/AtmosAlarmableSystem.cs index 2875d4a3d5..1b3b11068c 100644 --- a/Content.Server/Atmos/Monitor/Systems/AtmosAlarmableSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AtmosAlarmableSystem.cs @@ -11,6 +11,7 @@ using Content.Shared.Tag; using Robust.Server.Audio; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Prototypes; using Robust.Shared.Utility; namespace Content.Server.Atmos.Monitor.Systems; @@ -86,7 +87,7 @@ public sealed class AtmosAlarmableSystem : EntitySystem return; if (!args.Data.TryGetValue(DeviceNetworkConstants.Command, out string? cmd) - || !args.Data.TryGetValue(AlertSource, out HashSet? sourceTags)) + || !args.Data.TryGetValue(AlertSource, out HashSet>? sourceTags)) { return; }