From c730d6ed82533bf9a7a74475624264ab374e90fe Mon Sep 17 00:00:00 2001 From: Tyasuh <122596795+Tyasuh@users.noreply.github.com> Date: Fri, 31 Mar 2023 04:18:58 -0400 Subject: [PATCH] Fix a bug introduced in #454 (#456) --- src/Gang/Gang.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gang/Gang.ts b/src/Gang/Gang.ts index a7f2c5217..95fc1856a 100644 --- a/src/Gang/Gang.ts +++ b/src/Gang/Gang.ts @@ -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];