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

View File

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