From 01e3f05ea0d4360cb85de67928c7b5bd9ed48742 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Fri, 15 Mar 2024 22:17:10 +0100 Subject: [javascript] Rework the contracting loop following the asteroids changes --- nodejs/lib/ships.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nodejs/lib/ships.js') diff --git a/nodejs/lib/ships.js b/nodejs/lib/ships.js index eb59013..f6cb027 100644 --- a/nodejs/lib/ships.js +++ b/nodejs/lib/ships.js @@ -5,7 +5,7 @@ import * as systems from '../lib/systems.js'; export async function extract(ctx) { const ship = dbShips.getShip(ctx.symbol); - const asteroidFields = await systems.type({symbol: ship.nav.systemSymbol, type: 'ASTEROID_FIELD'}); + const asteroidFields = await systems.type({symbol: ship.nav.systemSymbol, type: 'ENGINEERED_ASTEROID'}); // TODO if there are multiple fields, find the closest one? await navigate({symbol: ctx.symbol, waypoint: asteroidFields[0].symbol}); await orbit(ctx); -- cgit v1.2.3