People with the Numb trait no longer scream during surgery

This commit is contained in:
mnva 2025-09-03 20:23:04 -04:00
parent fcba3629cc
commit 685cec5be8
1 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,7 @@ using Content.Shared._DV.Surgery;
using Content.Shared.FixedPoint;
using Content.Shared.Forensics.Components;
using Content.Shared.Damage.Prototypes;
using Content.Shared.Traits.Assorted;
// End DeltaV Additions
using Content.Shared._Shitmed.Medical.Surgery;
using Content.Shared._Shitmed.Medical.Surgery.Conditions;
@ -263,6 +264,8 @@ public sealed class SurgerySystem : SharedSurgerySystem
{
if (HasComp<AnesthesiaComponent>(args.Body)) // DeltaV
return;
if (HasComp<PainNumbnessComponent>(args.Body)) // DeltaV
return;
_chat.TryEmoteWithChat(args.Body, ent.Comp.Emote);
}