Ignore rpshot for eps and hps

This commit is contained in:
Cmdr McDonald
2017-03-22 17:53:26 +00:00
parent c7ea1eb95a
commit d15e49f315
6 changed files with 92 additions and 25 deletions

View File

@@ -554,10 +554,10 @@ export default class Module {
getEps() {
// EPS is a synthetic value
let distdraw = this.getDistDraw();
let rpshot = this.roundspershot || 1;
// We don't use rpshot here as dist draw is per combined shot
let rof = this.getRoF() || 1;
return distdraw * rpshot * rof;
return distdraw * rof;
}
/**
@@ -567,10 +567,10 @@ export default class Module {
getHps() {
// HPS is a synthetic value
let heat = this.getThermalLoad();
let rpshot = this.roundspershot || 1;
// We don't use rpshot here as dist draw is per combined shot
let rof = this.getRoF() || 1;
return heat * rpshot * rof;
return heat * rof;
}
/**