Skip to content

Commit

Permalink
Make IdentityBlocker include outerclothing
Browse files Browse the repository at this point in the history
  • Loading branch information
thetolbean committed Oct 31, 2024
1 parent d446a3e commit 423454a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public enum IdentityBlockerCoverage
NONE = 0,
MOUTH = 1 << 0,
EYES = 1 << 1,
FULL = MOUTH | EYES
OUTER = 1 << 1,
FULL = MOUTH | EYES | OUTER
}

/// <summary>
Expand All @@ -30,7 +31,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;
Expand Down

0 comments on commit 423454a

Please sign in to comment.