From: Preston Smith <92108534+thetolbean@users.noreply.github.com> Date: Thu, 24 Apr 2025 23:42:27 +0000 (-0500) Subject: Correct IdentityBlocker to include specific outer clothing (#33085) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=f22160aa484088f8578f35f3948445e79d9dcbc9;p=space-station-14.git Correct IdentityBlocker to include specific outer clothing (#33085) * Make IdentityBlocker include outerclothing * Modify Correct Bit * Fix mask/eye cobo --- diff --git a/Content.Shared/IdentityManagement/Components/IdentityBlockerComponent.cs b/Content.Shared/IdentityManagement/Components/IdentityBlockerComponent.cs index e7a88b6ef2..308d9c0bf7 100644 --- a/Content.Shared/IdentityManagement/Components/IdentityBlockerComponent.cs +++ b/Content.Shared/IdentityManagement/Components/IdentityBlockerComponent.cs @@ -30,7 +30,7 @@ public enum IdentityBlockerCoverage public sealed class SeeIdentityAttemptEvent : CancellableEntityEventArgs, IInventoryRelayEvent { // i.e. masks, helmets, or glasses. - public SlotFlags TargetSlots => SlotFlags.MASK | SlotFlags.HEAD | SlotFlags.EYES; + public SlotFlags TargetSlots => SlotFlags.MASK | SlotFlags.HEAD | SlotFlags.EYES | SlotFlags.OUTERCLOTHING; // cumulative coverage from each relayed slot public IdentityBlockerCoverage TotalCoverage = IdentityBlockerCoverage.NONE;