remove debug log

This commit is contained in:
Olivier Gagnon 2021-09-05 01:51:27 -04:00
parent a475e6297e
commit f50b2a9d9f
2 changed files with 1 additions and 2 deletions

File diff suppressed because one or more lines are too long

@ -93,7 +93,6 @@ export class Faction {
const totalRep = storedRep + this.rolloverRep + this.playerReputation;
const newFavor = Math.floor(repToFavor(totalRep));
const newRep = favorToRep(newFavor);
console.log(`${storedRep} ${this.rolloverRep} ${this.playerReputation}`);
return [newFavor - this.favor + 1, totalRep - newRep];
}