diff --git a/Content.Server/Atmos/EntitySystems/AirtightSystem.cs b/Content.Server/Atmos/EntitySystems/AirtightSystem.cs index 99054cd2d0..b42e8d6a8a 100644 --- a/Content.Server/Atmos/EntitySystems/AirtightSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AirtightSystem.cs @@ -91,6 +91,9 @@ namespace Content.Server.Atmos.EntitySystems public void SetAirblocked(AirtightComponent airtight, bool airblocked, TransformComponent? xform = null) { + if (airtight.AirBlocked == airblocked) + return; + if (!Resolve(airtight.Owner, ref xform)) return; airtight.AirBlocked = airblocked;