diff --git a/src/app/shipyard/Module.js b/src/app/shipyard/Module.js index 7df7f44e..4559f54b 100755 --- a/src/app/shipyard/Module.js +++ b/src/app/shipyard/Module.js @@ -927,8 +927,9 @@ export default class Module { const burst = this.get('burst', modified) || 1; const burstRoF = this.get('burstrof', modified) || 1; const intRoF = this.get('rof', modified); + const charge = this.get('charge', modified) || 0; - return burst / (((burst - 1) / burstRoF) + 1 / intRoF); + return burst / (((burst - 1) / burstRoF) + 1 / intRoF + charge); } /**