diff --git a/ChangeLog.md b/ChangeLog.md index afea02ee..7848244e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -11,3 +11,4 @@ * Fix hardpoint comparison DPS number when selecting an alternate module * Ensure that retrofit tab only shows changed modules * Fix import and export of ships with modifications, bump schema version to 4 + * Enable boost display even if power distributor is disabled diff --git a/src/app/shipyard/Ship.js b/src/app/shipyard/Ship.js index e7cdb415..e71f8ac6 100755 --- a/src/app/shipyard/Ship.js +++ b/src/app/shipyard/Ship.js @@ -126,7 +126,6 @@ export default class Ship { */ canBoost() { return this.canThrust() && // Thrusters operational - this.getSlotStatus(this.standard[4]) == 3 && // Power distributor operational this.boostEnergy <= this.standard[4].m.getEnginesCapacity(); // PD capacitor is sufficient for boost }