Merge pull request #1409 from BartKoppelmans/patch-3

Removed console warning for Sleeves
This commit is contained in:
hydroflame
2021-10-03 21:34:21 -04:00
committed by GitHub

View File

@ -409,7 +409,7 @@ export class Sleeve extends Person {
return jobPerformance * this.company_rep_mult * favorMult; return jobPerformance * this.company_rep_mult * favorMult;
} else { } else {
console.warn(`Sleeve.getRepGain() called for invalid task type: ${this.currentTask}`); // console.warn(`Sleeve.getRepGain() called for invalid task type: ${this.currentTask}`);
return 0; return 0;
} }
} }