Lint fixes

This commit is contained in:
Colin McLeod
2015-09-21 21:42:48 -07:00
parent 457b8920f2
commit e9a0a01e14
3 changed files with 4 additions and 4 deletions

View File

@@ -400,7 +400,7 @@ angular.module('shipyard').factory('Ship', ['Components', 'calcShieldStrength',
Ship.prototype.updateTopSpeed = function() {
var speeds = calcSpeed(this.unladenMass + this.fuelCapacity, this.speed, this.boost, this.common[1].c, this.pipSpeed);
this.topSpeed = speeds['4 Pips'];
this.topBoost = speeds['boost'];
this.topBoost = speeds.boost;
};
Ship.prototype.updateShieldStrength = function() {