diff --git a/package.json b/package.json index 02a94204..8ba06c15 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "icarus", - "version": "0.2.9", + "version": "0.2.10", "description": "ICARUS Terminal for Elite Dangerous", "scripts": { "build": "npm run build:web && npm run build:app && npm run build:service && npm run build:package", diff --git a/src/service/lib/system-map.js b/src/service/lib/system-map.js index b8aab947..f5ea4ff5 100644 --- a/src/service/lib/system-map.js +++ b/src/service/lib/system-map.js @@ -76,7 +76,6 @@ class SystemMap { bodies.forEach((body, i) => { body._type = body.type - //if (body.name === 'Colonia 3') console.log(body) // Only applies to stars if (body.type !== 'Star') return @@ -383,10 +382,6 @@ class SystemMap { if (!systemObject.parents) continue const nearestNonNullParent = this.#getNearestNotNullParent(systemObject) - - if (MEGASHIPS.includes(systemObject?._type)) { - console.log('M', targetBody.name, `(${targetBody.bodyId})`, systemObject.name, systemObject.parents, nearestNonNullParent) - } // Some systems to have multiple Null points round which bodies orbit. // We noramlize these all into one Null orbit (Body ID 0) to allow the map diff --git a/src/web/pages/index.js b/src/web/pages/index.js index 73d0fdfc..4b0b8e4e 100644 --- a/src/web/pages/index.js +++ b/src/web/pages/index.js @@ -7,7 +7,7 @@ export default function IndexPage () { const { connected, active } = useSocket() // Client side redirect - if (typeof window !== 'undefined') Router.push('/nav') + if (typeof window !== 'undefined') Router.push('/nav/map') return (