Files
tbd-station-14/Content.Shared/Lock/LockedStorageComponent.cs
beck-thompson 8e8b318862 Fix chameleon backpacks not being able to be opened when locked (#39784)
* Fix chameleon backpacks not being able to be opened when locked

* rename

---------

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
2025-08-26 23:50:19 +02:00

11 lines
336 B
C#

using Content.Shared.Storage;
using Robust.Shared.GameStates;
namespace Content.Shared.Lock;
/// <summary>
/// Prevents using an entity's <see cref="StorageComponent"/> if its <see cref="LockComponent"/> is locked.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class LockedStorageComponent : Component;