From cf6d32ea04ebbaa99845496fd8dfbe8d297b7105 Mon Sep 17 00:00:00 2001 From: Cmdr McDonald Date: Thu, 10 Nov 2016 22:15:42 +0000 Subject: [PATCH] Enable boost display even if power distributor is disabled --- ChangeLog.md | 1 + src/app/shipyard/Ship.js | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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 }