diff --git a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs index cdb24496548..c7a7fdd1e81 100644 --- a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs +++ b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs @@ -514,8 +514,8 @@ private void SendPurchaseMessage(EntityUid uid, EntityUid player, string name, s { _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-docking", ("owner", player), ("vessel", name)), channel, uid); _chat.TrySendInGameICMessage(uid, Loc.GetString("shipyard-console-docking", ("owner", player!), ("vessel", name)), InGameICChatType.Speak, true); - }; - }; + } + } } private void SendSellMessage(EntityUid uid, string? player, string name, string shipyardChannel, EntityUid seller, bool secret) @@ -532,8 +532,8 @@ private void SendSellMessage(EntityUid uid, string? player, string name, string { _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-leaving", ("owner", player!), ("vessel", name!), ("player", seller)), channel, uid); _chat.TrySendInGameICMessage(uid, Loc.GetString("shipyard-console-leaving", ("owner", player!), ("vessel", name!), ("player", seller)), InGameICChatType.Speak, true); - }; - }; + } + } } private void PlayDenySound(EntityUid playerUid, EntityUid consoleUid, ShipyardConsoleComponent component) @@ -741,7 +741,7 @@ private struct IDShipAccesses // Check that the listing contains the shuttle or that the shuttle is in the group that the console is looking for if (listing?.Shuttles.Contains(vessel.ID) ?? false || key != null && key != ShipyardConsoleUiKey.Custom && - vessel.Group == key || key == ShipyardConsoleUiKey.Debug) + vessel.Group == key || key == ShipyardConsoleUiKey.Debug) // shipyardConsoleUiKey.Debug from Corvax-Frontier { if (hasAccess) available.Add(vessel.ID);