diff --git a/ChangeLog.md b/ChangeLog.md index 894da6cb..ab1cf2b1 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,8 @@ #2.3.3 * Remove unused blueprint when hitting reset * Add 'purchase module' external link to EDDB for refit items + * Use coriolis-data 2.3.3: + * Add Felicity Farseer to list of engineers that supply sensor and detailed surface scanner modifications #2.3.2 * Use scan range for DSS rather than scan time diff --git a/package.json b/package.json index f9851ca5..f2047f42 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coriolis_shipyard", - "version": "2.3.2", + "version": "2.3.3", "repository": { "type": "git", "url": "https://github.com/EDCD/coriolis" diff --git a/src/app/components/CostSection.jsx b/src/app/components/CostSection.jsx index cbc74b39..0da51961 100644 --- a/src/app/components/CostSection.jsx +++ b/src/app/components/CostSection.jsx @@ -334,10 +334,8 @@ export default class CostSection extends TranslatedComponent { const { retrofitCosts } = this.state; const { ship } = this.props; -console.log(`retrofitCosts is ${JSON.stringify(retrofitCosts, null, 2)}`); // Provide unique list of non-PP module EDDB IDs to buy const modIds = retrofitCosts.filter(item => item.retroItem.incCost && item.buyId && !item.buyPp).map(item => item.buyId).filter((v, i, a) => a.indexOf(v) === i); -console.log(`modIds is ${JSON.stringify(modIds)}`); // Open up the relevant URL window.open('https://eddb.io/station?m=' + modIds.join(',')); diff --git a/src/app/shipyard/Ship.js b/src/app/shipyard/Ship.js index 8f9186a1..99dcd23d 100755 --- a/src/app/shipyard/Ship.js +++ b/src/app/shipyard/Ship.js @@ -449,8 +449,8 @@ export default class Ship { /** * Set special for a module - * @param {Object} m The module for which to set the blueprint - * @param {Object} bp The blueprint + * @param {Object} m The module for which to set the blueprint + * @param {Object} special The special */ setModuleSpecial(m, special) { if (m.blueprint) {