Remove unneeded rolloverRep attribute

This commit is contained in:
nickofolas 2022-01-10 14:19:25 -06:00
parent 30f6d157d9
commit 4e94b3db4e

@ -71,7 +71,6 @@ export class Company {
isPlayerEmployed: boolean; isPlayerEmployed: boolean;
playerReputation: number; playerReputation: number;
favor: number; favor: number;
rolloverRep: number;
constructor(p: IConstructorParams = DefaultConstructorParams) { constructor(p: IConstructorParams = DefaultConstructorParams) {
this.name = p.name; this.name = p.name;
@ -84,7 +83,6 @@ export class Company {
this.isPlayerEmployed = false; this.isPlayerEmployed = false;
this.playerReputation = 1; this.playerReputation = 1;
this.favor = 0; this.favor = 0;
this.rolloverRep = 0;
this.isMegacorp = false; this.isMegacorp = false;
if (p.isMegacorp) this.isMegacorp = true; if (p.isMegacorp) this.isMegacorp = true;
} }