diff --git a/Content.Shared/Atmos/Monitor/AtmosSensorData.cs b/Content.Shared/Atmos/Monitor/AtmosSensorData.cs index 0410d025f0..435b538d64 100644 --- a/Content.Shared/Atmos/Monitor/AtmosSensorData.cs +++ b/Content.Shared/Atmos/Monitor/AtmosSensorData.cs @@ -1,7 +1,9 @@ using Content.Shared.Atmos.Monitor.Components; +using Robust.Shared.Serialization; namespace Content.Shared.Atmos.Monitor; +[Serializable, NetSerializable] public sealed class AtmosSensorData : IAtmosDeviceData { public AtmosSensorData(float pressure, float temperature, float totalMoles, AtmosMonitorAlarmType alarmState, Dictionary gases, AtmosAlarmThreshold pressureThreshold, AtmosAlarmThreshold temperatureThreshold, Dictionary gasThresholds)