diff --git a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs index 8b150812fe..1aa664c9fb 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Shuttle.cs @@ -452,11 +452,11 @@ public sealed partial class CargoSystem private void OnCargoFTLStarted(EntityUid uid, CargoShuttleComponent component, ref FTLStartedEvent args) { - var xform = Transform(uid); var stationUid = component.Station; // Called - if (xform.MapID != CargoMap || + if (CargoMap == null || + args.FromMapUid != _mapManager.GetMapEntityId(CargoMap.Value) || !TryComp(stationUid, out var orderDatabase)) { return;