diff --git a/Content.Server/_CorvaxNext/Ghostbar/GhostBarSystem.cs b/Content.Server/_CorvaxNext/Ghostbar/GhostBarSystem.cs index cc1e218e5c9..12c78eeb3e3 100644 --- a/Content.Server/_CorvaxNext/Ghostbar/GhostBarSystem.cs +++ b/Content.Server/_CorvaxNext/Ghostbar/GhostBarSystem.cs @@ -28,6 +28,8 @@ public sealed class GhostBarSystem : EntitySystem [Dependency] private readonly MindSystem _mindSystem = default!; [Dependency] private readonly IEntityManager _entityManager = default!; + private const string MapPath = "Maps/Nonstations/ghostbar.yml"; + private static readonly List> _jobComponents = ["Passenger", "Bartender", "Chef"]; public override void Initialize() @@ -37,7 +39,6 @@ public override void Initialize() SubscribeLocalEvent(OnPlayerGhosted); } - const string MapPath = "Maps/Nonstations/ghostbar.yml"; private void OnRoundStart(RoundStartingEvent ev) { _mapSystem.CreateMap(out var mapId);