From 03e5c153da8c6ab97790a356dbc7da2fc43d1dd7 Mon Sep 17 00:00:00 2001 From: E F R <602406+Efruit@users.noreply.github.com> Date: Sat, 2 Oct 2021 21:03:42 +0000 Subject: [PATCH] atmos: fix AtmosDeviceSystem failing to join (#4746) --- Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs b/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs index 997b51dddf..1c4e0807e3 100644 --- a/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs +++ b/Content.Server/Atmos/Piping/EntitySystems/AtmosDeviceSystem.cs @@ -32,7 +32,7 @@ namespace Content.Server.Atmos.Piping.EntitySystems private bool CanJoinAtmosphere(AtmosDeviceComponent component) { - return !component.RequireAnchored || !component.Owner.Transform.Anchored; + return !component.RequireAnchored || component.Owner.Transform.Anchored; } public void JoinAtmosphere(AtmosDeviceComponent component)