mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* init commit * I forgot components exist * delta told me to make it a list (cherry picked from commit 5740a88208707510009d7d976394069d2a593d3e)
16 lines
486 B
C#
16 lines
486 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// The jobs that are ignored by this rule and won't have their slots changed.
|
|
/// </summary>
|
|
[DataField]
|
|
public List<ProtoId<JobPrototype>> IgnoredJobs = new();
|
|
}
|