From 31d39b36ae5346b4f3d4b19177128c6113e801f4 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:28:16 +0300 Subject: [PATCH] Update CP14ExpeditionSystem.cs --- Content.Server/_CP14/Shuttles/CP14ExpeditionSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/_CP14/Shuttles/CP14ExpeditionSystem.cs b/Content.Server/_CP14/Shuttles/CP14ExpeditionSystem.cs index a39683d3b2..2b4172dfca 100644 --- a/Content.Server/_CP14/Shuttles/CP14ExpeditionSystem.cs +++ b/Content.Server/_CP14/Shuttles/CP14ExpeditionSystem.cs @@ -130,7 +130,7 @@ public sealed class CP14ExpeditionSystem : EntitySystem var possiblePositions = new List(); while (points.MoveNext(out var uid, out var spawnPoint, out var xform)) { - if (ev.Job != null && spawnPoint.Job != ev.Job.Prototype) + if (ev.Job != null && spawnPoint.Job != ev.Job.Value) continue; if (xform.GridUid != gridUid)