6
2025-12-13 13:46:17 +03:00

13 lines
320 B
C#

namespace Content.Server._NF.Pirate.Components;
/// <summary>
/// Denotes an entity whose mind gets the pirate role when spawned.
/// Similar to AutoTraitorComponent.
/// </summary>
[RegisterComponent]
public sealed partial class AutoPirateComponent : Component
{
[DataField]
public bool ApplyFaction = true;
}