using Content.Server.StationEvents.Events; using Content.Shared.Roles; using Robust.Shared.Prototypes; namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(BureaucraticErrorRule))] public sealed partial class BureaucraticErrorRuleComponent : Component { /// /// The jobs that are ignored by this rule and won't have their slots changed. /// [DataField] public List> IgnoredJobs = new(); }