6
2026-01-24 12:49:55 +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;
}