summaryrefslogtreecommitdiff
path: root/nodejs/lib/ships.js
diff options
context:
space:
mode:
Diffstat (limited to 'nodejs/lib/ships.js')
-rw-r--r--nodejs/lib/ships.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/nodejs/lib/ships.js b/nodejs/lib/ships.js
index f6cb027..6415cdb 100644
--- a/nodejs/lib/ships.js
+++ b/nodejs/lib/ships.js
@@ -139,7 +139,7 @@ export async function refuel(ctx) {
}
export async function sell(ctx) {
- // TODO check if our current waypoint has a marketplace (and sells fuel)?
+ // TODO check if our current waypoint has a marketplace?
await dock(ctx);
const ship = dbShips.getShip(ctx.symbol);
const response = await api.send({endpoint: `/my/ships/${ctx.symbol}/sell`, method: 'POST', payload: { symbol: ctx.good, units: ctx.units }});