From f84f9aa407ba1b6101e2392b06f68a58fc576da5 Mon Sep 17 00:00:00 2001 From: Scribbles0 <91828755+Scribbles0@users.noreply.github.com> Date: Sat, 4 Mar 2023 15:08:44 -0800 Subject: [PATCH] Disposals Air (#14407) --- .../Disposal/Unit/EntitySystems/BeingDisposedSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Disposal/Unit/EntitySystems/BeingDisposedSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/BeingDisposedSystem.cs index e4b7f9062d..72d86bd64b 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/BeingDisposedSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/BeingDisposedSystem.cs @@ -19,6 +19,7 @@ public sealed class BeingDisposedSystem : EntitySystem if (TryComp(component.Holder, out var holder)) { args.Gas = holder.Air; + args.Handled = true; } }