12 lines
299 B
JavaScript
12 lines
299 B
JavaScript
/**
|
|
* This function returns the current CPS buff
|
|
* @returns {number} mult The multiplier
|
|
*/
|
|
export default function GetCPSBuffMult() {
|
|
let mult = 1;
|
|
for (const i of Object.keys(Game.buffs)) {
|
|
if (typeof Game.buffs[i].multCpS !== 'undefined') mult *= Game.buffs[i].multCpS;
|
|
}
|
|
return mult;
|
|
}
|