From a9f6035cf32a8202a09e0e899b37e6609ebd6fbf Mon Sep 17 00:00:00 2001 From: Janet Blackquill Date: Sun, 28 Sep 2025 22:15:50 -0400 Subject: [PATCH] A little bit of buffer goes a long way --- Content.Shared/_Offbrand/Wounds/BrainDamageSystem.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Shared/_Offbrand/Wounds/BrainDamageSystem.cs b/Content.Shared/_Offbrand/Wounds/BrainDamageSystem.cs index 94753e7283..ecfae4aa53 100644 --- a/Content.Shared/_Offbrand/Wounds/BrainDamageSystem.cs +++ b/Content.Shared/_Offbrand/Wounds/BrainDamageSystem.cs @@ -199,6 +199,9 @@ public sealed partial class BrainDamageSystem : EntitySystem return; } + if (ent.Comp1.Oxygen > 0) + return; + var evt = new BeforeDealBrainDamage(chance); RaiseLocalEvent(ent, ref evt);