Skip to content

Commit

Permalink
Add missing Frontier comments
Browse files Browse the repository at this point in the history
  • Loading branch information
whatston3 committed Jan 22, 2025
1 parent af3ea66 commit 1a6658a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Content.Server/Shuttles/Systems/DockingSystem.Shuttle.cs
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

/// <summary>
Expand All @@ -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)
{
Expand Down

0 comments on commit 1a6658a

Please sign in to comment.