From 1a6658a2e277256783d247a80d1813692e2e52e4 Mon Sep 17 00:00:00 2001 From: Whatstone Date: Wed, 22 Jan 2025 12:19:32 -0500 Subject: [PATCH] Add missing Frontier comments --- Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs | 2 +- .../Shuttles/Systems/ShuttleSystem.FasterThanLight.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs b/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs index f8184a4bb36..7c3b2f710ee 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs @@ -1,12 +1,12 @@ using System.Linq; using System.Numerics; using Content.Server.Shuttles.Components; -using Content.Shared.Shuttles.Components; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics; using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Physics.Components; +using Content.Shared.Shuttles.Components; // Frontier namespace Content.Server.Shuttles.Systems; diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index bcfc62f39e9..f876ffd3e43 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -715,7 +715,7 @@ public bool TryFTLDock( string? priorityTag = null, DockType dockType = DockType.Airlock) // Frontier { - return TryFTLDock(shuttleUid, component, targetUid, out _, priorityTag, dockType); + return TryFTLDock(shuttleUid, component, targetUid, out _, priorityTag, dockType); // Frontier: add dockType } /// @@ -740,7 +740,7 @@ public bool TryFTLDock( return false; } - config = _dockSystem.GetDockingConfig(shuttleUid, targetUid, priorityTag, dockType); + config = _dockSystem.GetDockingConfig(shuttleUid, targetUid, priorityTag, dockType); // Frontier: add dockType if (config != null) {