AlertLevelInterceptionRuleComponent.cs 465 B

123456789101112131415
  1. using Content.Server.StationEvents.Events;
  2. using Content.Server.AlertLevel;
  3. using Robust.Shared.Prototypes;
  4. namespace Content.Server.StationEvents.Components;
  5. [RegisterComponent, Access(typeof(AlertLevelInterceptionRule))]
  6. public sealed partial class AlertLevelInterceptionRuleComponent : Component
  7. {
  8. /// <summary>
  9. /// Alert level to set the station to when the event starts.
  10. /// </summary>
  11. [DataField]
  12. public string AlertLevel = "blue";
  13. }