diff options
Diffstat (limited to 'nodejs/lib')
-rw-r--r-- | nodejs/lib/contracts.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nodejs/lib/contracts.js b/nodejs/lib/contracts.js index f73f297..5c2e970 100644 --- a/nodejs/lib/contracts.js +++ b/nodejs/lib/contracts.js @@ -20,6 +20,7 @@ export async function contracts() { } export async function deliver(ctx) { + await libShips.dock(ctx); const response = await api.send({ endpoint: `/my/contracts/${ctx.contract}/deliver`, method: 'POST', payload: { shipSymbol: ctx.symbol, tradeSymbol: ctx.good, @@ -29,6 +30,8 @@ export async function deliver(ctx) { throw response; } dbShips.setShipCargo(ctx.symbol, response.data.cargo); + // TODO update contract delivered units + // TODO track credits } export async function fulfill(ctx) { |