BureaucraticErrorRuleComponent.cs 486 B

123456789101112131415
  1. using Content.Server.StationEvents.Events;
  2. using Content.Shared.Roles;
  3. using Robust.Shared.Prototypes;
  4. namespace Content.Server.StationEvents.Components;
  5. [RegisterComponent, Access(typeof(BureaucraticErrorRule))]
  6. public sealed partial class BureaucraticErrorRuleComponent : Component
  7. {
  8. /// <summary>
  9. /// The jobs that are ignored by this rule and won't have their slots changed.
  10. /// </summary>
  11. [DataField]
  12. public List<ProtoId<JobPrototype>> IgnoredJobs = new();
  13. }