Devices with access restrictions list those restrictions in their examination description (#37712)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user