Add ERT time stats (#31629)

* add jobs for ghost roles

* add job to ToggleableGhostRole

* typo

---------

Co-authored-by: Mota <belochuc@gmail.com>
This commit is contained in:
poeMota
2024-09-02 08:32:49 +03:00
committed by GitHub
parent 738e0cf0df
commit 9a51d37d02
6 changed files with 41 additions and 3 deletions

View File

@@ -1,4 +1,7 @@
namespace Content.Server.Ghost.Roles.Components;
using Content.Shared.Roles;
using Robust.Shared.Prototypes;
namespace Content.Server.Ghost.Roles.Components;
/// <summary>
/// This is used for a ghost role which can be toggled on and off at will, like a PAI.
@@ -38,4 +41,7 @@ public sealed partial class ToggleableGhostRoleComponent : Component
[DataField("stopSearchVerbPopup")]
public string StopSearchVerbPopup = string.Empty;
[DataField("job")]
public ProtoId<JobPrototype>? JobProto = null;
}