Skip to content

Commit

Permalink
Fix FTL docking
Browse files Browse the repository at this point in the history
  • Loading branch information
GreaseMonk committed Apr 12, 2024
1 parent f5c2095 commit f23123d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Shipyard/Systems/ShipyardSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public bool TryPurchaseShuttle(EntityUid stationUid, string shuttlePath, [NotNul

_sawmill.Info($"Shuttle {shuttlePath} was purchased at {ToPrettyString((EntityUid) stationUid)} for {price:f2}");
//can do TryFTLDock later instead if we need to keep the shipyard map paused
_shuttle.FTLToCoordinates(shuttleGrid.Value, shuttle, targetGrid.Value.ToCoordinates(), 0f, 15f);
_shuttle.TryFTLDock(shuttleGrid.Value, shuttle, targetGrid.Value);

return true;
}
Expand Down

0 comments on commit f23123d

Please sign in to comment.