mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-10 07:05:35 +00:00
Ignore rpshot for eps and hps
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user