From b7dacbd2918bde4615fa3e6c6b6da68166173ac5 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 23 Apr 2022 15:47:30 +1200 Subject: [PATCH] Fix magboots atmos wind protection (#7663) --- Content.Server/Clothing/MagbootsSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Clothing/MagbootsSystem.cs b/Content.Server/Clothing/MagbootsSystem.cs index a965c2c69d..4c3b5673bd 100644 --- a/Content.Server/Clothing/MagbootsSystem.cs +++ b/Content.Server/Clothing/MagbootsSystem.cs @@ -26,7 +26,7 @@ namespace Content.Server.Clothing if (TryComp(parent, out MovedByPressureComponent? movedByPressure)) { - movedByPressure.Enabled = state; + movedByPressure.Enabled = !state; } if (state)