Enable boost display even if power distributor is disabled

This commit is contained in:
Cmdr McDonald
2016-11-10 22:15:42 +00:00
parent 5b81a0b25f
commit cf6d32ea04
2 changed files with 1 additions and 1 deletions

View File

@@ -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

View File

@@ -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
}