NotCommandRequirementComponent.cs 317 B

1234567891011
  1. using Content.Server.Objectives.Systems;
  2. namespace Content.Server.Objectives.Components;
  3. /// <summary>
  4. /// Requires that the player is not a member of command.
  5. /// </summary>
  6. [RegisterComponent, Access(typeof(NotCommandRequirementSystem))]
  7. public sealed partial class NotCommandRequirementComponent : Component
  8. {
  9. }