Devices with access restrictions list those restrictions in their examination description (#37712)

This commit is contained in:
chromiumboy
2025-09-15 02:19:25 -05:00
committed by GitHub
parent ff94d3e7ad
commit 02061592dd
14 changed files with 324 additions and 27 deletions

View File

@@ -0,0 +1,16 @@
using Content.Shared.Inventory;
using Robust.Shared.GameStates;
namespace Content.Shared.Access.Components;
/// <summary>
/// This component allows you to see whether an access reader's settings have been modified.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class ShowAccessReaderSettingsComponent : Component, IClothingSlots
{
/// <summary>
/// Determines from which equipment slots this entity can provide its benefits.
/// </summary>
public SlotFlags Slots { get; set; } = ~SlotFlags.POCKET;
}