Fix a bug introduced in #454 (#456)

This commit is contained in:
Tyasuh 2023-03-31 04:18:58 -04:00 committed by GitHub
parent b9e227509e
commit c730d6ed82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -120,7 +120,7 @@ export class Gang {
this.respectGainRate = respectGains;
this.wantedGainRate = wantedLevelGains;
this.moneyGainRate = moneyGains;
const gain = respectGains * numCycles;
const gain = respectGains;
this.respect += gain;
// Faction reputation gains is respect gain divided by some constant
const fac = Factions[this.facName];