diff --git a/Content.Server/Backmen/Shipyard/Systems/ShipyardSystem.Consoles.cs b/Content.Server/Backmen/Shipyard/Systems/ShipyardSystem.Consoles.cs index a01cb7a7dae..8b4cc80bdb8 100644 --- a/Content.Server/Backmen/Shipyard/Systems/ShipyardSystem.Consoles.cs +++ b/Content.Server/Backmen/Shipyard/Systems/ShipyardSystem.Consoles.cs @@ -107,7 +107,7 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component return; } - _cargo.DeductFunds(bank, vessel.Price); + UpdateBankAccount(bankUid, bank, -vessel.Price); var channel = _prototypeManager.Index("Command"); _radio.SendRadioMessage(uid, Loc.GetString("shipyard-console-docking", ("vessel", vessel.Name.ToString())), channel, uid); PlayConfirmSound(uid, component);