6
2025-11-15 12:24:44 +03:00

16 lines
569 B
C#

using Content.Server.DeviceLinking.Systems;
namespace Content.Server.DeviceLinking.Components;
/// <summary>
/// When attached to an entity with a DeviceLinkSourceComponent,
/// prevents signals from being automatically sent when a new link is established.
/// </summary>
/// <remarks>
/// Useful for devices like shuttle console buttons that should only send signals
/// when explicitly triggered, not automatically when linked.
/// </remarks>
[RegisterComponent, Access(typeof(DeviceLinkSystem))]
public sealed partial class NoSignalOnLinkComponent : Component
{
}