mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* small patch * fix * remove garbage * fix * moved to shared events * fix * LocId --------- Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> (cherry picked from commit 498ad2d5d714c73d9212bda9d3d89d53b2001e04)
12 lines
370 B
C#
12 lines
370 B
C#
using Content.Shared.Access.Systems;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Access.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(ActivatableUIRequiresAccessSystem))]
|
|
public sealed partial class ActivatableUIRequiresAccessComponent : Component
|
|
{
|
|
[DataField]
|
|
public LocId? PopupMessage = "lock-comp-has-user-access-fail";
|
|
}
|