From 2a0acfa6cbe10f6223596be5de8223f2bcc45fd1 Mon Sep 17 00:00:00 2001 From: Felix Linker Date: Sat, 18 Aug 2018 21:15:37 +0200 Subject: [PATCH] No special treatment for shotspeed modifications anymore --- src/app/shipyard/Module.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/app/shipyard/Module.js b/src/app/shipyard/Module.js index 81a0187c..350d0374 100755 --- a/src/app/shipyard/Module.js +++ b/src/app/shipyard/Module.js @@ -741,16 +741,6 @@ export default class Module { * @return {string} the shot speed for this module */ getShotSpeed() { - if (this.blueprint && (this.blueprint.name === 'Focused' || this.blueprint.name === 'Long range')) { - // If the modification is focused or long range then the shot speed - // uses the range modifier - const rangemod = this.getModValue('range') / 10000; - let result = this['shotspeed']; - if (!result) { - return null; - } - return result * (1 + rangemod); - } return this._getModifiedValue('shotspeed'); }